summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--prism/config.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/prism/config.yml b/prism/config.yml
index 6f6a2ba8db..00f7a77e60 100644
--- a/prism/config.yml
+++ b/prism/config.yml
@@ -1037,6 +1037,18 @@ nodes:
fields:
- name: name
type: constant
+ comment: |
+ The name of the class variable, including the leading `@@`. Variable
+ names begin with an underscore, alphabetical, or non-ASCII character,
+ followed by arbitrarily many underscores, alphanumeric or non-ASCII
+ characters. The exact definitions of "alphabetical" and "alphanumeric"
+ are encoding-dependent.
+
+ @@abc # name `:@@abc`
+
+ @@_test # name `:@@_test`
+
+ @@🍔 # name `:@@🍔`
comment: |
Represents referencing a class variable.