/* Reserved words. */
- { nxt_string("abstract"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("boolean"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("byte"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("char"), NJS_TOKEN_RESERVED, 0 },
+ { nxt_string("await"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("class"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("const"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("debugger"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("double"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("enum"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("export"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("extends"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("final"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("float"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("goto"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("implements"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("import"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("int"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("interface"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("long"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("native"), NJS_TOKEN_RESERVED, 0 },
+ { nxt_string("let"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("package"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("private"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("protected"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("public"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("short"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("static"), NJS_TOKEN_RESERVED, 0 },
{ nxt_string("super"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("synchronized"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("throws"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("transient"), NJS_TOKEN_RESERVED, 0 },
- { nxt_string("volatile"), NJS_TOKEN_RESERVED, 0 },
};