|
30 | 30 | * "Argument[n]", or "Argument[n1..n2]":
|
31 | 31 | * - "": Selects a write to the selected element in case this is a field.
|
32 | 32 | * - "Argument[n]": Selects an argument in a call to the selected element.
|
33 |
| - * The arguments are zero-indexed, and `-1` specifies the qualifier. |
| 33 | + * The arguments are zero-indexed, and `receiver` specifies the receiver. |
34 | 34 | * - "Argument[n1..n2]": Similar to "Argument[n]" but selects any argument
|
35 | 35 | * in the given range. The range is inclusive at both ends.
|
36 | 36 | *
|
|
40 | 40 | * - "": Selects a read of a selected field.
|
41 | 41 | * - "Argument[n]": Selects the post-update value of an argument in a call to the
|
42 | 42 | * selected element. That is, the value of the argument after the call returns.
|
43 |
| - * The arguments are zero-indexed, and `-1` specifies the qualifier. |
| 43 | + * The arguments are zero-indexed, and `receiver` specifies the receiver. |
44 | 44 | * - "Argument[n1..n2]": Similar to "Argument[n]" but select any argument in
|
45 | 45 | * the given range. The range is inclusive at both ends.
|
46 | 46 | * - "Parameter": Selects the value of a parameter of the selected element.
|
47 | 47 | * - "Parameter[n]": Similar to "Parameter" but restricted to a specific
|
48 |
| - * numbered parameter (zero-indexed, and `-1` specifies the value of `this`). |
| 48 | + * numbered parameter (zero-indexed, and `receiver` specifies the receiver). |
49 | 49 | * - "Parameter[n1..n2]": Similar to "Parameter[n]" but selects any parameter
|
50 | 50 | * in the given range. The range is inclusive at both ends.
|
51 | 51 | * - "ReturnValue": Selects the first value being returned by the selected
|
|
0 commit comments