diff options
| -rw-r--r-- | prism/config.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/prism/config.yml b/prism/config.yml index e8b4f4ec64..d7440149db 100644 --- a/prism/config.yml +++ b/prism/config.yml @@ -740,10 +740,25 @@ nodes: fields: - name: new_name type: node + comment: | + Represents the new name of the global variable that can be used after aliasing. This can be either a global variable, a back reference, or a numbered reference. + + alias $foo $bar + ^^^^ - name: old_name type: node + comment: | + Represents the old name of the global variable that could be used before aliasing. This can be either a global variable, a back reference, or a numbered reference. + + alias $foo $bar + ^^^^ - name: keyword_loc type: location + comment: | + The location of the `alias` keyword. + + alias $foo $bar + ^^^^^ comment: | Represents the use of the `alias` keyword to alias a global variable. |
