1# Main keywords.
2@begin mainTable 47
3
4# Types.
5null		NULLTOKEN
6true		TRUETOKEN
7false		FALSETOKEN
8
9# Keywords.
10break		BREAK
11case		CASE
12catch		CATCH
13const		CONSTTOKEN
14default		DEFAULT
15finally		FINALLY
16for		FOR
17instanceof	INSTANCEOF
18new		NEW
19var		VAR
20continue	CONTINUE
21function	FUNCTION
22return		RETURN
23void		VOIDTOKEN
24delete		DELETETOKEN
25if		IF
26this		THISTOKEN
27do		DO
28while		WHILE
29else		ELSE
30in		INTOKEN
31switch		SWITCH
32throw		THROW
33try		TRY
34typeof		TYPEOF
35with		WITH
36debugger	DEBUGGER
37
38# Reserved for future use.
39class           RESERVED
40enum            RESERVED
41export          RESERVED
42extends         RESERVED
43import          RESERVED
44super           RESERVED
45
46# Reserved for future use in strict code.
47implements      RESERVED_IF_STRICT
48interface       RESERVED_IF_STRICT
49let             RESERVED_IF_STRICT
50package         RESERVED_IF_STRICT
51private         RESERVED_IF_STRICT
52protected       RESERVED_IF_STRICT
53public          RESERVED_IF_STRICT
54static          RESERVED_IF_STRICT
55yield           RESERVED_IF_STRICT
56
57@end
58