This commit is contained in:
2025-12-03 20:18:46 -06:00
parent 1886f10211
commit fc87c05daf
8 changed files with 75 additions and 31 deletions

View File

@@ -68,7 +68,6 @@ DEF(super, "super")
DEF(implements, "implements")
DEF(interface, "interface")
DEF(let, "let")
DEF(package, "package")
DEF(private, "private")
DEF(protected, "protected")
DEF(public, "public")

View File

@@ -14862,7 +14862,6 @@ enum {
TOK_IMPLEMENTS,
TOK_INTERFACE,
TOK_LET,
TOK_PACKAGE,
TOK_PRIVATE,
TOK_PROTECTED,
TOK_PUBLIC,
@@ -24789,7 +24788,6 @@ static __exception int js_parse_directives(JSParseState *s)
case TOK_IMPORT:
case TOK_INTERFACE:
case TOK_LET:
case TOK_PACKAGE:
/* automatic insertion of ';' */
if (s->got_lf)
has_semi = TRUE;