Skip to content

Commit dd141f9

Browse files
authored
add missing keywords to parser fuzzer dict from PHP 7.4 to 8.3 (#13160)
* Added missing keywords to parser fuzzer dict from PHP 7.4 to 8.3 * Added null return type
1 parent 6d0a3e8 commit dd141f9

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

sapi/fuzzer/dict/parser

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"function"
55
"const"
66
"return"
7+
"mixed"
78
"yield"
89
"yield from"
910
"try"
@@ -29,6 +30,7 @@
2930
"endswitch"
3031
"case"
3132
"default"
33+
"match"
3234
"break"
3335
"continue"
3436
"goto"
@@ -46,13 +48,18 @@
4648
"integer"
4749
"float"
4850
"double"
51+
"never"
52+
"void"
4953
"real"
5054
"string"
5155
"binary"
5256
"array"
5357
"object"
5458
"bool"
5559
"boolean"
60+
"true"
61+
"false"
62+
"null"
5663
"unset"
5764
"eval"
5865
"include"
@@ -72,9 +79,12 @@
7279
"private"
7380
"protected"
7481
"public"
82+
"readonly"
83+
"enum"
7584
"unset"
7685
"list"
7786
"callable"
87+
"iterable"
7888
"__class__"
7989
"__trait__"
8090
"__function__"

0 commit comments

Comments
 (0)