diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-03-26 23:13:29 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-03-26 23:14:04 +0300 |
| commit | 9fb179ab999c3b98caabca09b30c409dc5dd3b3d (patch) | |
| tree | 087f849f78028950885b46fbbe1bae35f9c1a908 /gen/gen_parser.h | |
| parent | 373728f324b82d305748cfe3c853053fe2a9f761 (diff) | |
| download | ek-9fb179ab999c3b98caabca09b30c409dc5dd3b3d.tar.gz ek-9fb179ab999c3b98caabca09b30c409dc5dd3b3d.zip | |
start enums
Diffstat (limited to 'gen/gen_parser.h')
| -rw-r--r-- | gen/gen_parser.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gen/gen_parser.h b/gen/gen_parser.h index fb8e85b..0753292 100644 --- a/gen/gen_parser.h +++ b/gen/gen_parser.h @@ -1,5 +1,3 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later */ - /* A Bison parser, made by GNU Bison 3.8.2. */ /* Bison interface for Yacc-like parsers in C @@ -133,7 +131,8 @@ extern int yydebug; RBRACKET = 332, /* "]" */ AS = 333, /* "as" */ DOT = 334, /* "." */ - FATARROW = 335 /* "=>" */ + SCOPE = 335, /* "::" */ + FATARROW = 336 /* "=>" */ }; typedef enum yytokentype yytoken_kind_t; #endif @@ -149,7 +148,7 @@ union YYSTYPE double dbl; char *str; -#line 151 "gen/gen_parser.h" +#line 152 "gen/gen_parser.h" }; typedef union YYSTYPE YYSTYPE; |
