diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2020-02-29 20:52:53 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2020-02-29 21:42:38 +0900 |
commit | 403675e8dc0f4b9e6b79ace649db1851e7cbba51 (patch) | |
tree | a3bef0e279500efcf9a368cca90f3af3f84eba77 /parse.y | |
parent | adcf0316d1ecedae2a9157ad941550e0c0fb510b (diff) | |
download | ruby-403675e8dc0f4b9e6b79ace649db1851e7cbba51.tar.gz |
Named `tLABEL` token
Diffstat (limited to 'parse.y')
-rw-r--r-- | parse.y | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1060,7 +1060,7 @@ static int looking_at_eol_p(struct parser_params *p); %token <id> tIVAR "instance variable" %token <id> tCONSTANT "constant" %token <id> tCVAR "class variable" -%token <id> tLABEL +%token <id> tLABEL "label" %token <node> tINTEGER "integer literal" %token <node> tFLOAT "float literal" %token <node> tRATIONAL "rational literal" |