File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ DEF(if, "if")
33
33
DEF (else , "else" )
34
34
DEF (return , "return" )
35
35
DEF (var , "var" )
36
- DEF (using , "using" )
37
36
DEF (this , "this" )
38
37
DEF (delete , "delete" )
39
38
DEF (void , "void" )
@@ -73,6 +72,7 @@ DEF(private, "private")
73
72
DEF (protected , "protected" )
74
73
DEF (public , "public" )
75
74
DEF (static , "static" )
75
+ DEF (using , "using" )
76
76
DEF (yield , "yield" )
77
77
DEF (await , "await" )
78
78
Original file line number Diff line number Diff line change @@ -18624,7 +18624,6 @@ enum {
18624
18624
TOK_ELSE,
18625
18625
TOK_RETURN,
18626
18626
TOK_VAR,
18627
- TOK_USING,
18628
18627
TOK_THIS,
18629
18628
TOK_DELETE,
18630
18629
TOK_VOID,
@@ -18664,6 +18663,7 @@ enum {
18664
18663
TOK_PROTECTED,
18665
18664
TOK_PUBLIC,
18666
18665
TOK_STATIC,
18666
+ TOK_USING,
18667
18667
TOK_YIELD,
18668
18668
TOK_AWAIT, /* must be last */
18669
18669
TOK_OF, /* only used for js_parse_skip_parens_token() */
You can’t perform that action at this time.
0 commit comments