mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
72 lines
1.3 KiB
Text
72 lines
1.3 KiB
Text
# main keywords
|
|
@begin mainTable 41
|
|
|
|
# types
|
|
null NULLTOKEN
|
|
true TRUETOKEN
|
|
false FALSETOKEN
|
|
|
|
# keywords
|
|
break BREAK
|
|
case CASE
|
|
catch CATCH
|
|
const CONSTTOKEN
|
|
default DEFAULT
|
|
finally FINALLY
|
|
for FOR
|
|
import IMPORT
|
|
instanceof INSTANCEOF
|
|
new NEW
|
|
var VAR
|
|
continue CONTINUE
|
|
function FUNCTION
|
|
return RETURN
|
|
void VOIDTOKEN
|
|
delete DELETETOKEN
|
|
if IF
|
|
this THISTOKEN
|
|
do DO
|
|
while WHILE
|
|
else ELSE
|
|
in INTOKEN
|
|
switch SWITCH
|
|
throw THROW
|
|
try TRY
|
|
typeof TYPEOF
|
|
with WITH
|
|
debugger DEBUGGER
|
|
|
|
# reserved for future use
|
|
enum RESERVED
|
|
export RESERVED
|
|
extends RESERVED
|
|
super RESERVED
|
|
|
|
# these words are reserved for future use in the ECMA spec, but not in WinIE
|
|
# (see http://bugs.webkit.org/show_bug.cgi?id=6179)
|
|
# abstract RESERVED
|
|
# boolean RESERVED
|
|
# byte RESERVED
|
|
# char RESERVED
|
|
# class RESERVED
|
|
# double RESERVED
|
|
# final RESERVED
|
|
# float RESERVED
|
|
# goto RESERVED
|
|
# implements RESERVED
|
|
# int RESERVED
|
|
# interface RESERVED
|
|
# long RESERVED
|
|
# native RESERVED
|
|
# package RESERVED
|
|
# private RESERVED
|
|
# protected RESERVED
|
|
# public RESERVED
|
|
# short RESERVED
|
|
# static RESERVED
|
|
# synchronized RESERVED
|
|
# throws RESERVED
|
|
# transient RESERVED
|
|
# volatile RESERVED
|
|
@end
|
|
|