summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-02-29 20:52:53 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-02-29 21:42:38 +0900
commit403675e8dc0f4b9e6b79ace649db1851e7cbba51 (patch)
treea3bef0e279500efcf9a368cca90f3af3f84eba77 /parse.y
parentadcf0316d1ecedae2a9157ad941550e0c0fb510b (diff)
Named `tLABEL` token
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 34f8fefd83..cc6f4b7417 100644
--- a/parse.y
+++ b/parse.y
@@ -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"