@@ -64,65 +64,66 @@ final class Token
6464 Php_BooleanAnd = 276 ,
6565 Php_AmpersandNotFollowed = 277 ,
6666 Php_AmpersandFollowed = 278 ,
67- Php_IsEqual = 279 ,
68- Php_IsNotEqual = 280 ,
69- Php_IsIdentical = 281 ,
70- Php_IsNotIdentical = 282 ,
71- Php_Spaceship = 283 ,
72- Php_IsSmallerOrEqual = 284 ,
73- Php_IsGreaterOrEqual = 285 ,
74- Php_Sl = 286 ,
75- Php_Sr = 287 ,
76- Php_In = 288 ,
77- Php_Instanceof = 289 ,
78- Php_Inc = 290 ,
79- Php_Dec = 291 ,
80- Php_IntCast = 292 ,
81- Php_FloatCast = 293 ,
82- Php_StringCast = 294 ,
83- Php_ArrayCast = 295 ,
84- Php_ObjectCast = 296 ,
85- Php_BoolCast = 297 ,
86- Php_Pow = 298 ,
87- Php_New = 299 ,
88- Php_Clone = 300 ,
89- Php_Integer = 301 ,
90- Php_Float = 302 ,
91- Php_Identifier = 303 ,
92- Php_StringVarname = 304 ,
93- Php_Constant = 305 ,
94- Php_Variable = 306 ,
95- Php_NumString = 307 ,
96- Php_EncapsedAndWhitespace = 308 ,
97- Php_ConstantEncapsedString = 309 ,
98- Php_Match = 310 ,
99- Php_Default = 311 ,
100- Php_Function = 312 ,
101- Php_Fn = 313 ,
102- Php_Return = 314 ,
103- Php_Use = 315 ,
104- Php_Isset = 316 ,
105- Php_Empty = 317 ,
106- Php_ObjectOperator = 318 ,
107- Php_NullsafeObjectOperator = 319 ,
108- Php_UndefinedsafeObjectOperator = 320 ,
109- Php_List = 321 ,
110- Php_Array = 322 ,
111- Php_StartHeredoc = 323 ,
112- Php_EndHeredoc = 324 ,
113- Php_DollarOpenCurlyBraces = 325 ,
114- Php_CurlyOpen = 326 ,
115- Php_PaamayimNekudotayim = 327 ,
116- Php_NsSeparator = 328 ,
117- Php_Ellipsis = 329 ,
118- Php_ExpandCast = 330 ,
119- Php_NameFullyQualified = 331 ,
120- Php_NameQualified = 332 ,
121- Php_Whitespace = 333 ,
122- Php_Comment = 334 ,
123- Php_Null = 335 ,
124- Php_True = 336 ,
125- Php_False = 337 ;
67+ Php_Not = 279 ,
68+ Php_IsEqual = 280 ,
69+ Php_IsNotEqual = 281 ,
70+ Php_IsIdentical = 282 ,
71+ Php_IsNotIdentical = 283 ,
72+ Php_Spaceship = 284 ,
73+ Php_IsSmallerOrEqual = 285 ,
74+ Php_IsGreaterOrEqual = 286 ,
75+ Php_In = 287 ,
76+ Php_Sl = 288 ,
77+ Php_Sr = 289 ,
78+ Php_Instanceof = 290 ,
79+ Php_Inc = 291 ,
80+ Php_Dec = 292 ,
81+ Php_IntCast = 293 ,
82+ Php_FloatCast = 294 ,
83+ Php_StringCast = 295 ,
84+ Php_ArrayCast = 296 ,
85+ Php_ObjectCast = 297 ,
86+ Php_BoolCast = 298 ,
87+ Php_Pow = 299 ,
88+ Php_New = 300 ,
89+ Php_Clone = 301 ,
90+ Php_Integer = 302 ,
91+ Php_Float = 303 ,
92+ Php_Identifier = 304 ,
93+ Php_StringVarname = 305 ,
94+ Php_Constant = 306 ,
95+ Php_Variable = 307 ,
96+ Php_NumString = 308 ,
97+ Php_EncapsedAndWhitespace = 309 ,
98+ Php_ConstantEncapsedString = 310 ,
99+ Php_Match = 311 ,
100+ Php_Default = 312 ,
101+ Php_Function = 313 ,
102+ Php_Fn = 314 ,
103+ Php_Return = 315 ,
104+ Php_Use = 316 ,
105+ Php_Isset = 317 ,
106+ Php_Empty = 318 ,
107+ Php_ObjectOperator = 319 ,
108+ Php_NullsafeObjectOperator = 320 ,
109+ Php_UndefinedsafeObjectOperator = 321 ,
110+ Php_List = 322 ,
111+ Php_Array = 323 ,
112+ Php_StartHeredoc = 324 ,
113+ Php_EndHeredoc = 325 ,
114+ Php_DollarOpenCurlyBraces = 326 ,
115+ Php_CurlyOpen = 327 ,
116+ Php_PaamayimNekudotayim = 328 ,
117+ Php_NsSeparator = 329 ,
118+ Php_Ellipsis = 330 ,
119+ Php_ExpandCast = 331 ,
120+ Php_NameFullyQualified = 332 ,
121+ Php_NameQualified = 333 ,
122+ Php_Whitespace = 334 ,
123+ Php_Comment = 335 ,
124+ Php_Null = 336 ,
125+ Php_True = 337 ,
126+ Php_False = 338 ;
126127
127128 public const NAMES = [
128129 self ::End => '[EOF] ' ,
@@ -169,16 +170,17 @@ final class Token
169170 self ::Php_BooleanAnd => "'&&' " ,
170171 self ::Php_AmpersandNotFollowed => "'&' " ,
171172 self ::Php_AmpersandFollowed => "'&' " ,
173+ self ::Php_Not => "'not' " ,
172174 self ::Php_IsEqual => "'==' " ,
173175 self ::Php_IsNotEqual => "'!=' " ,
174176 self ::Php_IsIdentical => "'===' " ,
175177 self ::Php_IsNotIdentical => "'!==' " ,
176178 self ::Php_Spaceship => "'<=>' " ,
177179 self ::Php_IsSmallerOrEqual => "'<=' " ,
178180 self ::Php_IsGreaterOrEqual => "'>=' " ,
181+ self ::Php_In => "'in' " ,
179182 self ::Php_Sl => "'<<' " ,
180183 self ::Php_Sr => "'>>' " ,
181- self ::Php_In => "'in' " ,
182184 self ::Php_Instanceof => "'instanceof' " ,
183185 self ::Php_Inc => "'++' " ,
184186 self ::Php_Dec => "'--' " ,
0 commit comments