1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/sapi/fuzzer/dict/parser
Jorg Adam Sowa dd141f9e3e 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
2024-01-17 01:51:42 +01:00

96 lines
878 B
Plaintext

"exit"
"die"
"fn"
"function"
"const"
"return"
"mixed"
"yield"
"yield from"
"try"
"catch"
"finally"
"throw"
"if"
"elseif"
"endif"
"else"
"while"
"endwhile"
"do"
"for"
"endfor"
"foreach"
"endforeach"
"declare"
"enddeclare"
"instanceof"
"as"
"switch"
"endswitch"
"case"
"default"
"match"
"break"
"continue"
"goto"
"echo"
"print"
"class"
"interface"
"trait"
"extends"
"implements"
"new"
"clone"
"var"
"int"
"integer"
"float"
"double"
"never"
"void"
"real"
"string"
"binary"
"array"
"object"
"bool"
"boolean"
"true"
"false"
"null"
"unset"
"eval"
"include"
"include_once"
"require"
"require_once"
"namespace"
"use"
"insteadof"
"global"
"isset"
"empty"
"__halt_compiler"
"static"
"abstract"
"final"
"private"
"protected"
"public"
"readonly"
"enum"
"unset"
"list"
"callable"
"iterable"
"__class__"
"__trait__"
"__function__"
"__method__"
"__line__"
"__file__"
"__dir__"
"__namespace__"