File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ DEF(if, "if")
3333DEF (else , "else" )
3434DEF (return , "return" )
3535DEF (var , "var" )
36- DEF (using , "using" )
3736DEF (this , "this" )
3837DEF (delete , "delete" )
3938DEF (void , "void" )
@@ -73,6 +72,7 @@ DEF(private, "private")
7372DEF (protected , "protected" )
7473DEF (public , "public" )
7574DEF (static , "static" )
75+ DEF (using , "using" )
7676DEF (yield , "yield" )
7777DEF (await , "await" )
7878
Original file line number Diff line number Diff line change @@ -18624,7 +18624,6 @@ enum {
1862418624 TOK_ELSE,
1862518625 TOK_RETURN,
1862618626 TOK_VAR,
18627- TOK_USING,
1862818627 TOK_THIS,
1862918628 TOK_DELETE,
1863018629 TOK_VOID,
@@ -18664,6 +18663,7 @@ enum {
1866418663 TOK_PROTECTED,
1866518664 TOK_PUBLIC,
1866618665 TOK_STATIC,
18666+ TOK_USING,
1866718667 TOK_YIELD,
1866818668 TOK_AWAIT, /* must be last */
1866918669 TOK_OF, /* only used for js_parse_skip_parens_token() */
You can’t perform that action at this time.
0 commit comments