• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# main keywords
2@begin mainTable 41
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# these words are reserved for future use in the ECMA spec, but not in WinIE
47# (see http://bugs.webkit.org/show_bug.cgi?id=6179)
48# abstract      RESERVED
49# boolean       RESERVED
50# byte          RESERVED
51# char          RESERVED
52# double        RESERVED
53# final         RESERVED
54# float         RESERVED
55# goto          RESERVED
56# implements    RESERVED
57# int           RESERVED
58# interface     RESERVED
59# long          RESERVED
60# native        RESERVED
61# package       RESERVED
62# private       RESERVED
63# protected     RESERVED
64# public        RESERVED
65# short         RESERVED
66# static        RESERVED
67# synchronized  RESERVED
68# throws        RESERVED
69# transient     RESERVED
70# volatile      RESERVED
71@end
72
73