aliases
Find all names that refer to the same heap object as a given value. Use this to identify alias sets before analyzing mutations.
Instructions
Read-only. Return the values that alias this one — those sharing a heap object through POINTS_TO (the destructuring / alias set). Use it to find every name for the same object before reasoning about a mutation; complements points_to (objects a value points to) and flow (where a value goes). Response carries the alias set with path evidence.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | value name or graph node id | |
| format | No | text (compact, default) | json (structured result page) |