Lines Matching refs:classifyIdentifier
29 PASS classifyIdentifier("x") is "identifier"
30 PASS classifyIdentifier("id") is "identifier"
31 PASS classifyIdentifier("identifier") is "identifier"
32 PASS classifyIdentifier("keyword") is "identifier"
33 PASS classifyIdentifier("strict") is "identifier"
34 PASS classifyIdentifier("use") is "identifier"
35 PASS classifyIdentifier("abstract") is "identifier"
36 PASS classifyIdentifier("boolean") is "identifier"
37 PASS classifyIdentifier("byte") is "identifier"
38 PASS classifyIdentifier("char") is "identifier"
39 PASS classifyIdentifier("double") is "identifier"
40 PASS classifyIdentifier("final") is "identifier"
41 PASS classifyIdentifier("float") is "identifier"
42 PASS classifyIdentifier("goto") is "identifier"
43 PASS classifyIdentifier("int") is "identifier"
44 PASS classifyIdentifier("long") is "identifier"
45 PASS classifyIdentifier("native") is "identifier"
46 PASS classifyIdentifier("short") is "identifier"
47 PASS classifyIdentifier("synchronized") is "identifier"
48 PASS classifyIdentifier("throws") is "identifier"
49 PASS classifyIdentifier("transient") is "identifier"
50 PASS classifyIdentifier("volatile") is "identifier"
51 PASS classifyIdentifier("break") is "keyword"
52 PASS classifyIdentifier("case") is "keyword"
53 PASS classifyIdentifier("catch") is "keyword"
54 PASS classifyIdentifier("continue") is "keyword"
55 PASS classifyIdentifier("debugger") is "keyword"
56 PASS classifyIdentifier("default") is "keyword"
57 PASS classifyIdentifier("delete") is "keyword"
58 PASS classifyIdentifier("do") is "keyword"
59 PASS classifyIdentifier("else") is "keyword"
60 PASS classifyIdentifier("finally") is "keyword"
61 PASS classifyIdentifier("for") is "keyword"
62 PASS classifyIdentifier("function") is "keyword"
63 PASS classifyIdentifier("if") is "keyword"
64 PASS classifyIdentifier("in") is "keyword"
65 PASS classifyIdentifier("instanceof") is "keyword"
66 PASS classifyIdentifier("new") is "keyword"
67 PASS classifyIdentifier("return") is "keyword"
68 PASS classifyIdentifier("switch") is "keyword"
69 PASS classifyIdentifier("this") is "keyword"
70 PASS classifyIdentifier("throw") is "keyword"
71 PASS classifyIdentifier("try") is "keyword"
72 PASS classifyIdentifier("typeof") is "keyword"
73 PASS classifyIdentifier("var") is "keyword"
74 PASS classifyIdentifier("void") is "keyword"
75 PASS classifyIdentifier("while") is "keyword"
76 PASS classifyIdentifier("with") is "keyword"
77 PASS classifyIdentifier("class") is "keyword"
78 PASS classifyIdentifier("const") is "keyword"
79 PASS classifyIdentifier("enum") is "keyword"
80 PASS classifyIdentifier("export") is "keyword"
81 PASS classifyIdentifier("extends") is "keyword"
82 PASS classifyIdentifier("import") is "keyword"
83 PASS classifyIdentifier("super") is "keyword"
84 PASS classifyIdentifier("implements") is "strict"
85 PASS classifyIdentifier("interface") is "strict"
86 PASS classifyIdentifier("let") is "strict"
87 PASS classifyIdentifier("package") is "strict"
88 PASS classifyIdentifier("private") is "strict"
89 PASS classifyIdentifier("protected") is "strict"
90 PASS classifyIdentifier("public") is "strict"
91 PASS classifyIdentifier("static") is "strict"
92 PASS classifyIdentifier("yield") is "strict"