|
39 | 39 | * "Argument[n]", "Argument[n1..n2]", "ReturnValue": |
40 | 40 | * - "": Selects a write to the selected element in case this is a field. |
41 | 41 | * - "Argument[n]": Selects an argument in a call to the selected element. |
42 | | - * The arguments are zero-indexed, and `-1` specifies the qualifier. |
| 42 | + * The arguments are zero-indexed, and `this` specifies the qualifier. |
43 | 43 | * - "Argument[n1..n2]": Similar to "Argument[n]" but select any argument in |
44 | 44 | * the given range. The range is inclusive at both ends. |
45 | 45 | * - "ReturnValue": Selects a value being returned by the selected element. |
|
50 | 50 | * - "": Selects a read of a selected field, or a selected parameter. |
51 | 51 | * - "Argument[n]": Selects the post-update value of an argument in a call to the |
52 | 52 | * selected element. That is, the value of the argument after the call returns. |
53 | | - * The arguments are zero-indexed, and `-1` specifies the qualifier. |
| 53 | + * The arguments are zero-indexed, and `this` specifies the qualifier. |
54 | 54 | * - "Argument[n1..n2]": Similar to "Argument[n]" but select any argument in |
55 | 55 | * the given range. The range is inclusive at both ends. |
56 | 56 | * - "Parameter": Selects the value of a parameter of the selected element. |
57 | 57 | * "Parameter" is also allowed in case the selected element is already a |
58 | 58 | * parameter itself. |
59 | 59 | * - "Parameter[n]": Similar to "Parameter" but restricted to a specific |
60 | | - * numbered parameter (zero-indexed, and `-1` specifies the value of `this`). |
| 60 | + * numbered parameter (zero-indexed, and `this` specifies the value of `this`). |
61 | 61 | * - "Parameter[n1..n2]": Similar to "Parameter[n]" but selects any parameter |
62 | 62 | * in the given range. The range is inclusive at both ends. |
63 | 63 | * - "ReturnValue": Selects the return value of a call to the selected element. |
|
0 commit comments