We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90c509b commit 9f11013Copy full SHA for 9f11013
src/lexer.js
@@ -35,7 +35,6 @@ const Lexer = function (engine) {
35
this.keywords = {
36
__class__: this.tok.T_CLASS_C,
37
__trait__: this.tok.T_TRAIT_C,
38
- __enum__: this.tok.T_ENUM_C,
39
__function__: this.tok.T_FUNC_C,
40
__method__: this.tok.T_METHOD_C,
41
__line__: this.tok.T_LINE,
src/parser.js
@@ -74,7 +74,6 @@ const Parser = function (lexer, ast) {
74
this.tok.T_ENDSWITCH,
75
this.tok.T_ENDWHILE,
76
this.tok.T_ENUM,
77
- this.tok.T_ENUM_C,
78
this.tok.T_EVAL,
79
this.tok.T_EXIT,
80
this.tok.T_EXTENDS,
@@ -146,7 +145,6 @@ const Parser = function (lexer, ast) {
146
145
"[",
147
this.tok.T_CLASS_C,
148
this.tok.T_TRAIT_C,
149
150
this.tok.T_FUNC_C,
151
this.tok.T_METHOD_C,
152
this.tok.T_LINE,
0 commit comments