parser 796 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. "exit"
  2. "die"
  3. "fn"
  4. "function"
  5. "const"
  6. "return"
  7. "yield"
  8. "yield from"
  9. "try"
  10. "catch"
  11. "finally"
  12. "throw"
  13. "if"
  14. "elseif"
  15. "endif"
  16. "else"
  17. "while"
  18. "endwhile"
  19. "do"
  20. "for"
  21. "endfor"
  22. "foreach"
  23. "endforeach"
  24. "declare"
  25. "enddeclare"
  26. "instanceof"
  27. "as"
  28. "switch"
  29. "endswitch"
  30. "case"
  31. "default"
  32. "break"
  33. "continue"
  34. "goto"
  35. "echo"
  36. "print"
  37. "class"
  38. "interface"
  39. "trait"
  40. "extends"
  41. "implements"
  42. "new"
  43. "clone"
  44. "var"
  45. "int"
  46. "integer"
  47. "float"
  48. "double"
  49. "real"
  50. "string"
  51. "binary"
  52. "array"
  53. "object"
  54. "bool"
  55. "boolean"
  56. "unset"
  57. "eval"
  58. "include"
  59. "include_once"
  60. "require"
  61. "require_once"
  62. "namespace"
  63. "use"
  64. "insteadof"
  65. "global"
  66. "isset"
  67. "empty"
  68. "__halt_compiler"
  69. "static"
  70. "abstract"
  71. "final"
  72. "private"
  73. "protected"
  74. "public"
  75. "unset"
  76. "list"
  77. "callable"
  78. "__class__"
  79. "__trait__"
  80. "__function__"
  81. "__method__"
  82. "__line__"
  83. "__file__"
  84. "__dir__"
  85. "__namespace__"