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