|
25 | 25 | * types can be short names or fully qualified names (mixing these two options
|
26 | 26 | * is not allowed within a single signature).
|
27 | 27 | * 6. The `ext` column specifies additional API-graph-like edges. Currently
|
28 |
| - * there are only two valid values: "" and "Annotated". The empty string has no |
29 |
| - * effect. "Annotated" applies if `name` and `signature` were left blank and |
30 |
| - * acts by selecting an element that is annotated by the annotation type |
31 |
| - * selected by the first 4 columns. This can be another member such as a field |
32 |
| - * or method, or a parameter. |
| 28 | + * there is only one valid value: "". |
33 | 29 | * 7. The `input` column specifies how data enters the element selected by the
|
34 | 30 | * first 6 columns, and the `output` column specifies how data leaves the
|
35 | 31 | * element selected by the first 6 columns. An `input` can be either "",
|
|
44 | 40 | *
|
45 | 41 | * An `output` can be either "", "Argument[n]", "Argument[n1..n2]", "Parameter",
|
46 | 42 | * "Parameter[n]", "Parameter[n1..n2]", or "ReturnValue":
|
47 |
| - * - "": Selects a read of a selected field, or a selected parameter. |
| 43 | + * - "": Selects a read of a selected field. |
48 | 44 | * - "Argument[n]": Selects the post-update value of an argument in a call to the
|
49 | 45 | * selected element. That is, the value of the argument after the call returns.
|
50 | 46 | * The arguments are zero-indexed, and `-1` specifies the qualifier.
|
51 | 47 | * - "Argument[n1..n2]": Similar to "Argument[n]" but select any argument in
|
52 | 48 | * the given range. The range is inclusive at both ends.
|
53 | 49 | * - "Parameter": Selects the value of a parameter of the selected element.
|
54 |
| - * "Parameter" is also allowed in case the selected element is already a |
55 |
| - * parameter itself. |
56 | 50 | * - "Parameter[n]": Similar to "Parameter" but restricted to a specific
|
57 | 51 | * numbered parameter (zero-indexed, and `-1` specifies the value of `this`).
|
58 | 52 | * - "Parameter[n1..n2]": Similar to "Parameter[n]" but selects any parameter
|
|
0 commit comments