File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
java/ql/src/semmle/code/java/dataflow Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 37
37
* - "Argument[n]": Selects an argument in a call to the selected element.
38
38
* The arguments are zero-indexed, and `-1` specifies the qualifier.
39
39
* - "Argument[n1..n2]": Similar to "Argument[n]" but select any argument in
40
- * the given range.
40
+ * the given range. The range is inclusive at both ends.
41
41
* - "ReturnValue": Selects a value being returned by the selected element.
42
42
* This requires that the selected element is a method with a body.
43
43
*
48
48
* selected element. That is, the value of the argument after the call returns.
49
49
* The arguments are zero-indexed, and `-1` specifies the qualifier.
50
50
* - "Argument[n1..n2]": Similar to "Argument[n]" but select any argument in
51
- * the given range.
51
+ * the given range. The range is inclusive at both ends.
52
52
* - "Parameter": Selects the value of a parameter of the selected element.
53
53
* "Parameter" is also allowed in case the selected element is already a
54
54
* parameter itself.
55
55
* - "Parameter[n]": Similar to "Parameter" but restricted to a specific
56
56
* numbered parameter (zero-indexed, and `-1` specifies the value of `this`).
57
57
* - "Parameter[n1..n2]": Similar to "Parameter[n]" but selects any parameter
58
- * in the given range.
58
+ * in the given range. The range is inclusive at both ends.
59
59
* - "ReturnValue": Selects the return value of a call to the selected element.
60
60
* 8. The `kind` column is a tag that can be referenced from QL to determine to
61
61
* which classes the interpreted elements should be added. For example, for
You can’t perform that action at this time.
0 commit comments