├── .codeclimate.yml ├── .coveralls.yml ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── .husky └── pre-commit ├── .istanbul.yml ├── .jsdoc.json ├── .npmignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── babel.config.js ├── docs ├── AST.html ├── Array.html ├── Assign.html ├── Bin.html ├── Block.html ├── Boolean.html ├── Break.html ├── Call.html ├── Case.html ├── Cast.html ├── Catch.html ├── Class.html ├── ClassConstant.html ├── ClassReference.html ├── Clone.html ├── Closure.html ├── Comment.html ├── CommentBlock.html ├── CommentLine.html ├── ConstRef.html ├── Constant.html ├── ConstantStatement.html ├── Continue.html ├── Declaration.html ├── Declare.html ├── DeclareDirective.html ├── Do.html ├── Echo.html ├── Empty.html ├── Encapsed.html ├── EncapsedPart.html ├── Entry.html ├── Error.html ├── Eval.html ├── Exit.html ├── Expression.html ├── ExpressionStatement.html ├── For.html ├── Foreach.html ├── Function.html ├── Global_.html ├── Goto.html ├── Halt.html ├── Identifier.html ├── If.html ├── Include.html ├── Inline.html ├── Interface.html ├── Isset.html ├── Label.html ├── List.html ├── Literal.html ├── Location.html ├── Lookup.html ├── Magic.html ├── Method.html ├── Namespace.html ├── New.html ├── Node.html ├── Noop.html ├── NowDoc.html ├── Number.html ├── OffsetLookup.html ├── Operation.html ├── Parameter.html ├── ParentReference.html ├── Parenthesis.html ├── Position.html ├── Post.html ├── Pre.html ├── Print.html ├── Program.html ├── Property.html ├── PropertyLookup.html ├── PropertyStatement.html ├── Reference.html ├── RetIf.html ├── Return.html ├── SelfReference.html ├── Silent.html ├── Statement.html ├── Static.html ├── StaticLookup.html ├── StaticReference.html ├── StaticVariable.html ├── String.html ├── Switch.html ├── Sys.html ├── Throw.html ├── Trait.html ├── TraitAlias.html ├── TraitPrecedence.html ├── TraitUse.html ├── Try.html ├── TypeReference.html ├── Unary.html ├── Unset.html ├── UseGroup.html ├── UseItem.html ├── Variable.html ├── While.html ├── Yield.html ├── YieldFrom.html ├── ast.js.html ├── ast_array.js.html ├── ast_assign.js.html ├── ast_bin.js.html ├── ast_block.js.html ├── ast_boolean.js.html ├── ast_break.js.html ├── ast_call.js.html ├── ast_case.js.html ├── ast_cast.js.html ├── ast_catch.js.html ├── ast_class.js.html ├── ast_classconstant.js.html ├── ast_classreference.js.html ├── ast_clone.js.html ├── ast_closure.js.html ├── ast_comment.js.html ├── ast_commentblock.js.html ├── ast_commentline.js.html ├── ast_constant.js.html ├── ast_constantstatement.js.html ├── ast_constref.js.html ├── ast_continue.js.html ├── ast_declaration.js.html ├── ast_declare.js.html ├── ast_declaredirective.js.html ├── ast_do.js.html ├── ast_echo.js.html ├── ast_empty.js.html ├── ast_encapsed.js.html ├── ast_encapsedpart.js.html ├── ast_entry.js.html ├── ast_error.js.html ├── ast_eval.js.html ├── ast_exit.js.html ├── ast_expression.js.html ├── ast_expressionstatement.js.html ├── ast_for.js.html ├── ast_foreach.js.html ├── ast_function.js.html ├── ast_global.js.html ├── ast_goto.js.html ├── ast_halt.js.html ├── ast_identifier.js.html ├── ast_if.js.html ├── ast_include.js.html ├── ast_inline.js.html ├── ast_interface.js.html ├── ast_isset.js.html ├── ast_label.js.html ├── ast_list.js.html ├── ast_literal.js.html ├── ast_location.js.html ├── ast_lookup.js.html ├── ast_magic.js.html ├── ast_method.js.html ├── ast_namespace.js.html ├── ast_new.js.html ├── ast_node.js.html ├── ast_noop.js.html ├── ast_nowdoc.js.html ├── ast_number.js.html ├── ast_offsetlookup.js.html ├── ast_operation.js.html ├── ast_parameter.js.html ├── ast_parenthesis.js.html ├── ast_parentreference.js.html ├── ast_position.js.html ├── ast_post.js.html ├── ast_pre.js.html ├── ast_print.js.html ├── ast_program.js.html ├── ast_property.js.html ├── ast_propertylookup.js.html ├── ast_propertystatement.js.html ├── ast_reference.js.html ├── ast_retif.js.html ├── ast_return.js.html ├── ast_selfreference.js.html ├── ast_silent.js.html ├── ast_statement.js.html ├── ast_static.js.html ├── ast_staticlookup.js.html ├── ast_staticreference.js.html ├── ast_staticvariable.js.html ├── ast_string.js.html ├── ast_switch.js.html ├── ast_sys.js.html ├── ast_throw.js.html ├── ast_trait.js.html ├── ast_traitalias.js.html ├── ast_traitprecedence.js.html ├── ast_traituse.js.html ├── ast_try.js.html ├── ast_typereference.js.html ├── ast_unary.js.html ├── ast_unset.js.html ├── ast_usegroup.js.html ├── ast_useitem.js.html ├── ast_variable.js.html ├── ast_variadic.js.html ├── ast_while.js.html ├── ast_yield.js.html ├── ast_yieldfrom.js.html ├── engine.html ├── fonts │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold-webfont.svg │ ├── OpenSans-Bold-webfont.woff │ ├── OpenSans-BoldItalic-webfont.eot │ ├── OpenSans-BoldItalic-webfont.svg │ ├── OpenSans-BoldItalic-webfont.woff │ ├── OpenSans-Italic-webfont.eot │ ├── OpenSans-Italic-webfont.svg │ ├── OpenSans-Italic-webfont.woff │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-LightItalic-webfont.eot │ ├── OpenSans-LightItalic-webfont.svg │ ├── OpenSans-LightItalic-webfont.woff │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ ├── OpenSans-Regular-webfont.woff │ ├── OpenSans-Semibold-webfont.eot │ ├── OpenSans-Semibold-webfont.svg │ ├── OpenSans-Semibold-webfont.ttf │ ├── OpenSans-Semibold-webfont.woff │ ├── OpenSans-SemiboldItalic-webfont.eot │ ├── OpenSans-SemiboldItalic-webfont.svg │ ├── OpenSans-SemiboldItalic-webfont.ttf │ └── OpenSans-SemiboldItalic-webfont.woff ├── global.html ├── icons │ ├── home.svg │ └── search.svg ├── index.html ├── index.js.html ├── lexer.html ├── lexer.js.html ├── lexer_comments.js.html ├── lexer_strings.js.html ├── parser.html ├── parser.js.html ├── parser_array.js.html ├── parser_class.js.html ├── parser_comment.js.html ├── parser_expr.js.html ├── parser_function.js.html ├── parser_if.js.html ├── parser_loops.js.html ├── parser_main.js.html ├── parser_namespace.js.html ├── parser_scalar.js.html ├── parser_statement.js.html ├── parser_switch.js.html ├── parser_try.js.html ├── parser_utils.js.html ├── parser_variable.js.html ├── scripts │ ├── linenumber.js │ └── pagelocation.js ├── styles │ ├── collapse.css │ ├── jsdoc-default.css │ ├── prettify-jsdoc.css │ └── prettify-tomorrow.css ├── tokens.js.html ├── tutorial-AST_.html ├── tutorial-Engine_.html ├── tutorial-Options.html ├── tutorial-Parser_.html └── variadic.html ├── eslint.config.mjs ├── jest.config.js ├── package.json ├── src ├── ast.js ├── ast │ ├── array.js │ ├── arrowfunc.js │ ├── assign.js │ ├── assignref.js │ ├── attrgroup.js │ ├── attribute.js │ ├── bin.js │ ├── block.js │ ├── boolean.js │ ├── break.js │ ├── byref.js │ ├── call.js │ ├── case.js │ ├── cast.js │ ├── catch.js │ ├── class.js │ ├── classconstant.js │ ├── clone.js │ ├── closure.js │ ├── comment.js │ ├── commentblock.js │ ├── commentline.js │ ├── constant.js │ ├── constantstatement.js │ ├── continue.js │ ├── declaration.js │ ├── declare.js │ ├── declaredirective.js │ ├── do.js │ ├── echo.js │ ├── empty.js │ ├── encapsed.js │ ├── encapsedpart.js │ ├── entry.js │ ├── enum.js │ ├── enumcase.js │ ├── error.js │ ├── eval.js │ ├── exit.js │ ├── expression.js │ ├── expressionstatement.js │ ├── for.js │ ├── foreach.js │ ├── function.js │ ├── global.js │ ├── goto.js │ ├── halt.js │ ├── identifier.js │ ├── if.js │ ├── include.js │ ├── inline.js │ ├── interface.js │ ├── intersectiontype.js │ ├── isset.js │ ├── label.js │ ├── list.js │ ├── literal.js │ ├── location.js │ ├── lookup.js │ ├── magic.js │ ├── match.js │ ├── matcharm.js │ ├── method.js │ ├── name.js │ ├── namedargument.js │ ├── namespace.js │ ├── new.js │ ├── node.js │ ├── noop.js │ ├── nowdoc.js │ ├── nullkeyword.js │ ├── nullsafepropertylookup.js │ ├── number.js │ ├── offsetlookup.js │ ├── operation.js │ ├── parameter.js │ ├── parentreference.js │ ├── position.js │ ├── post.js │ ├── pre.js │ ├── print.js │ ├── program.js │ ├── property.js │ ├── propertylookup.js │ ├── propertystatement.js │ ├── reference.js │ ├── retif.js │ ├── return.js │ ├── selfreference.js │ ├── silent.js │ ├── statement.js │ ├── static.js │ ├── staticlookup.js │ ├── staticreference.js │ ├── staticvariable.js │ ├── string.js │ ├── switch.js │ ├── throw.js │ ├── trait.js │ ├── traitalias.js │ ├── traitprecedence.js │ ├── traituse.js │ ├── try.js │ ├── typereference.js │ ├── unary.js │ ├── uniontype.js │ ├── unset.js │ ├── usegroup.js │ ├── useitem.js │ ├── variable.js │ ├── variadic.js │ ├── variadicplaceholder.js │ ├── while.js │ ├── yield.js │ └── yieldfrom.js ├── index.js ├── lexer.js ├── lexer │ ├── attribute.js │ ├── comments.js │ ├── initial.js │ ├── numbers.js │ ├── property.js │ ├── scripting.js │ ├── strings.js │ ├── tokens.js │ └── utils.js ├── parser.js ├── parser │ ├── array.js │ ├── class.js │ ├── comment.js │ ├── enum.js │ ├── expr.js │ ├── function.js │ ├── if.js │ ├── loops.js │ ├── main.js │ ├── namespace.js │ ├── scalar.js │ ├── statement.js │ ├── switch.js │ ├── try.js │ ├── utils.js │ └── variable.js └── tokens.js ├── test ├── ast.test.js ├── benchmark.js ├── debug.js ├── location.test.js ├── main.js ├── precedence.test.js ├── snapshot │ ├── __snapshots__ │ │ ├── acid.test.js.snap │ │ ├── array.test.js.snap │ │ ├── arrowfunc.test.js.snap │ │ ├── assign.test.js.snap │ │ ├── ast.test.js.snap │ │ ├── attributes.test.js.snap │ │ ├── bin.test.js.snap │ │ ├── block.test.js.snap │ │ ├── boolean.test.js.snap │ │ ├── break.test.js.snap │ │ ├── buffer.test.js.snap │ │ ├── byref.test.js.snap │ │ ├── call.test.js.snap │ │ ├── class.test.js.snap │ │ ├── classconstant.test.js.snap │ │ ├── classreference.test.js.snap │ │ ├── clone.test.js.snap │ │ ├── closure.test.js.snap │ │ ├── comment.test.js.snap │ │ ├── constantstatement.test.js.snap │ │ ├── continue.test.js.snap │ │ ├── declare.test.js.snap │ │ ├── echo.test.js.snap │ │ ├── empty.test.js.snap │ │ ├── encapsed.test.js.snap │ │ ├── enum.test.js.snap │ │ ├── eval.test.js.snap │ │ ├── exit.test.js.snap │ │ ├── expr.test.js.snap │ │ ├── foreach.test.js.snap │ │ ├── function.test.js.snap │ │ ├── global.test.js.snap │ │ ├── goto.test.js.snap │ │ ├── graceful.test.js.snap │ │ ├── heredoc.test.js.snap │ │ ├── if.test.js.snap │ │ ├── include.test.js.snap │ │ ├── interface.test.js.snap │ │ ├── isset.test.js.snap │ │ ├── label.test.js.snap │ │ ├── lexer.test.js.snap │ │ ├── list.test.js.snap │ │ ├── location.test.js.snap │ │ ├── loop.test.js.snap │ │ ├── magic.test.js.snap │ │ ├── match.test.js.snap │ │ ├── namespace.test.js.snap │ │ ├── new.test.js.snap │ │ ├── nowdoc.test.js.snap │ │ ├── nullsavepropertylookup.test.js.snap │ │ ├── number.test.js.snap │ │ ├── offsetlookup.test.js.snap │ │ ├── parentreference.test.js.snap │ │ ├── php5.test.js.snap │ │ ├── php73.test.js.snap │ │ ├── post.test.js.snap │ │ ├── pre.test.js.snap │ │ ├── print.test.js.snap │ │ ├── property.test.js.snap │ │ ├── propertylookup.test.js.snap │ │ ├── propertystatement.test.js.snap │ │ ├── return.test.js.snap │ │ ├── scalar.test.js.snap │ │ ├── selfreference.test.js.snap │ │ ├── silent.test.js.snap │ │ ├── statement.test.js.snap │ │ ├── static.test.js.snap │ │ ├── staticlookup.test.js.snap │ │ ├── staticreference.test.js.snap │ │ ├── string.test.js.snap │ │ ├── switch.test.js.snap │ │ ├── throw.test.js.snap │ │ ├── token.test.js.snap │ │ ├── trait.test.js.snap │ │ ├── traitprecedence.test.js.snap │ │ ├── try.test.js.snap │ │ ├── typereference.test.js.snap │ │ ├── unary.test.js.snap │ │ ├── union.test.js.snap │ │ ├── unset.test.js.snap │ │ ├── usegroup.test.js.snap │ │ ├── useitem.test.js.snap │ │ ├── variable.test.js.snap │ │ ├── yield.test.js.snap │ │ └── yieldfrom.test.js.snap │ ├── acid.test.js │ ├── array.test.js │ ├── arrowfunc.test.js │ ├── assign.test.js │ ├── ast.test.js │ ├── attributes.test.js │ ├── bin.test.js │ ├── block.test.js │ ├── boolean.test.js │ ├── break.test.js │ ├── buffer.test.js │ ├── byref.test.js │ ├── call.test.js │ ├── class.test.js │ ├── classconstant.test.js │ ├── classreference.test.js │ ├── clone.test.js │ ├── closure.test.js │ ├── comment.test.js │ ├── constantstatement.test.js │ ├── continue.test.js │ ├── declare.test.js │ ├── echo.test.js │ ├── empty.test.js │ ├── encapsed.test.js │ ├── enum.test.js │ ├── eval.test.js │ ├── exit.test.js │ ├── expr.test.js │ ├── foreach.test.js │ ├── function.test.js │ ├── global.test.js │ ├── goto.test.js │ ├── graceful.test.js │ ├── heredoc.test.js │ ├── if.test.js │ ├── include.test.js │ ├── interface.test.js │ ├── isset.test.js │ ├── label.test.js │ ├── lexer.test.js │ ├── list.test.js │ ├── location.test.js │ ├── loop.test.js │ ├── magic.test.js │ ├── match.test.js │ ├── namespace.test.js │ ├── new.test.js │ ├── nowdoc.test.js │ ├── nullsavepropertylookup.test.js │ ├── number.test.js │ ├── offsetlookup.test.js │ ├── parentreference.test.js │ ├── php5.test.js │ ├── php73.test.js │ ├── post.test.js │ ├── pre.test.js │ ├── print.test.js │ ├── property.test.js │ ├── propertylookup.test.js │ ├── propertystatement.test.js │ ├── return.test.js │ ├── scalar.test.js │ ├── selfreference.test.js │ ├── silent.test.js │ ├── statement.test.js │ ├── static.test.js │ ├── staticlookup.test.js │ ├── staticreference.test.js │ ├── string.test.js │ ├── switch.test.js │ ├── throw.test.js │ ├── token.test.js │ ├── trait.test.js │ ├── traitprecedence.test.js │ ├── try.test.js │ ├── typereference.test.js │ ├── unary.test.js │ ├── union.test.js │ ├── unset.test.js │ ├── usegroup.test.js │ ├── useitem.test.js │ ├── variable.test.js │ ├── yield.test.js │ └── yieldfrom.test.js └── version.test.js ├── tutorials ├── AST.md ├── Engine.md ├── Options.md └── Parser.md ├── types.d.ts ├── webpack.config.js └── yarn.lock /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: de6RJbSSDNAPxIegg5fAEjIPHRrVhxRiF -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | yarpm test 2 | -------------------------------------------------------------------------------- /.istanbul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/.istanbul.yml -------------------------------------------------------------------------------- /.jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/.jsdoc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/.npmignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/RELEASE.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/AST.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/AST.html -------------------------------------------------------------------------------- /docs/Array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Array.html -------------------------------------------------------------------------------- /docs/Assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Assign.html -------------------------------------------------------------------------------- /docs/Bin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Bin.html -------------------------------------------------------------------------------- /docs/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Block.html -------------------------------------------------------------------------------- /docs/Boolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Boolean.html -------------------------------------------------------------------------------- /docs/Break.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Break.html -------------------------------------------------------------------------------- /docs/Call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Call.html -------------------------------------------------------------------------------- /docs/Case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Case.html -------------------------------------------------------------------------------- /docs/Cast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Cast.html -------------------------------------------------------------------------------- /docs/Catch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Catch.html -------------------------------------------------------------------------------- /docs/Class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Class.html -------------------------------------------------------------------------------- /docs/ClassConstant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ClassConstant.html -------------------------------------------------------------------------------- /docs/ClassReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ClassReference.html -------------------------------------------------------------------------------- /docs/Clone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Clone.html -------------------------------------------------------------------------------- /docs/Closure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Closure.html -------------------------------------------------------------------------------- /docs/Comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Comment.html -------------------------------------------------------------------------------- /docs/CommentBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/CommentBlock.html -------------------------------------------------------------------------------- /docs/CommentLine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/CommentLine.html -------------------------------------------------------------------------------- /docs/ConstRef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ConstRef.html -------------------------------------------------------------------------------- /docs/Constant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Constant.html -------------------------------------------------------------------------------- /docs/ConstantStatement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ConstantStatement.html -------------------------------------------------------------------------------- /docs/Continue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Continue.html -------------------------------------------------------------------------------- /docs/Declaration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Declaration.html -------------------------------------------------------------------------------- /docs/Declare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Declare.html -------------------------------------------------------------------------------- /docs/DeclareDirective.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/DeclareDirective.html -------------------------------------------------------------------------------- /docs/Do.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Do.html -------------------------------------------------------------------------------- /docs/Echo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Echo.html -------------------------------------------------------------------------------- /docs/Empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Empty.html -------------------------------------------------------------------------------- /docs/Encapsed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Encapsed.html -------------------------------------------------------------------------------- /docs/EncapsedPart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/EncapsedPart.html -------------------------------------------------------------------------------- /docs/Entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Entry.html -------------------------------------------------------------------------------- /docs/Error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Error.html -------------------------------------------------------------------------------- /docs/Eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Eval.html -------------------------------------------------------------------------------- /docs/Exit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Exit.html -------------------------------------------------------------------------------- /docs/Expression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Expression.html -------------------------------------------------------------------------------- /docs/ExpressionStatement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ExpressionStatement.html -------------------------------------------------------------------------------- /docs/For.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/For.html -------------------------------------------------------------------------------- /docs/Foreach.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Foreach.html -------------------------------------------------------------------------------- /docs/Function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Function.html -------------------------------------------------------------------------------- /docs/Global_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Global_.html -------------------------------------------------------------------------------- /docs/Goto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Goto.html -------------------------------------------------------------------------------- /docs/Halt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Halt.html -------------------------------------------------------------------------------- /docs/Identifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Identifier.html -------------------------------------------------------------------------------- /docs/If.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/If.html -------------------------------------------------------------------------------- /docs/Include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Include.html -------------------------------------------------------------------------------- /docs/Inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Inline.html -------------------------------------------------------------------------------- /docs/Interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Interface.html -------------------------------------------------------------------------------- /docs/Isset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Isset.html -------------------------------------------------------------------------------- /docs/Label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Label.html -------------------------------------------------------------------------------- /docs/List.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/List.html -------------------------------------------------------------------------------- /docs/Literal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Literal.html -------------------------------------------------------------------------------- /docs/Location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Location.html -------------------------------------------------------------------------------- /docs/Lookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Lookup.html -------------------------------------------------------------------------------- /docs/Magic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Magic.html -------------------------------------------------------------------------------- /docs/Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Method.html -------------------------------------------------------------------------------- /docs/Namespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Namespace.html -------------------------------------------------------------------------------- /docs/New.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/New.html -------------------------------------------------------------------------------- /docs/Node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Node.html -------------------------------------------------------------------------------- /docs/Noop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Noop.html -------------------------------------------------------------------------------- /docs/NowDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/NowDoc.html -------------------------------------------------------------------------------- /docs/Number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Number.html -------------------------------------------------------------------------------- /docs/OffsetLookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/OffsetLookup.html -------------------------------------------------------------------------------- /docs/Operation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Operation.html -------------------------------------------------------------------------------- /docs/Parameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Parameter.html -------------------------------------------------------------------------------- /docs/ParentReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ParentReference.html -------------------------------------------------------------------------------- /docs/Parenthesis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Parenthesis.html -------------------------------------------------------------------------------- /docs/Position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Position.html -------------------------------------------------------------------------------- /docs/Post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Post.html -------------------------------------------------------------------------------- /docs/Pre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Pre.html -------------------------------------------------------------------------------- /docs/Print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Print.html -------------------------------------------------------------------------------- /docs/Program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Program.html -------------------------------------------------------------------------------- /docs/Property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Property.html -------------------------------------------------------------------------------- /docs/PropertyLookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/PropertyLookup.html -------------------------------------------------------------------------------- /docs/PropertyStatement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/PropertyStatement.html -------------------------------------------------------------------------------- /docs/Reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Reference.html -------------------------------------------------------------------------------- /docs/RetIf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/RetIf.html -------------------------------------------------------------------------------- /docs/Return.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Return.html -------------------------------------------------------------------------------- /docs/SelfReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/SelfReference.html -------------------------------------------------------------------------------- /docs/Silent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Silent.html -------------------------------------------------------------------------------- /docs/Statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Statement.html -------------------------------------------------------------------------------- /docs/Static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Static.html -------------------------------------------------------------------------------- /docs/StaticLookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/StaticLookup.html -------------------------------------------------------------------------------- /docs/StaticReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/StaticReference.html -------------------------------------------------------------------------------- /docs/StaticVariable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/StaticVariable.html -------------------------------------------------------------------------------- /docs/String.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/String.html -------------------------------------------------------------------------------- /docs/Switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Switch.html -------------------------------------------------------------------------------- /docs/Sys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Sys.html -------------------------------------------------------------------------------- /docs/Throw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Throw.html -------------------------------------------------------------------------------- /docs/Trait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Trait.html -------------------------------------------------------------------------------- /docs/TraitAlias.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/TraitAlias.html -------------------------------------------------------------------------------- /docs/TraitPrecedence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/TraitPrecedence.html -------------------------------------------------------------------------------- /docs/TraitUse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/TraitUse.html -------------------------------------------------------------------------------- /docs/Try.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Try.html -------------------------------------------------------------------------------- /docs/TypeReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/TypeReference.html -------------------------------------------------------------------------------- /docs/Unary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Unary.html -------------------------------------------------------------------------------- /docs/Unset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Unset.html -------------------------------------------------------------------------------- /docs/UseGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/UseGroup.html -------------------------------------------------------------------------------- /docs/UseItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/UseItem.html -------------------------------------------------------------------------------- /docs/Variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Variable.html -------------------------------------------------------------------------------- /docs/While.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/While.html -------------------------------------------------------------------------------- /docs/Yield.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/Yield.html -------------------------------------------------------------------------------- /docs/YieldFrom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/YieldFrom.html -------------------------------------------------------------------------------- /docs/ast.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast.js.html -------------------------------------------------------------------------------- /docs/ast_array.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_array.js.html -------------------------------------------------------------------------------- /docs/ast_assign.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_assign.js.html -------------------------------------------------------------------------------- /docs/ast_bin.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_bin.js.html -------------------------------------------------------------------------------- /docs/ast_block.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_block.js.html -------------------------------------------------------------------------------- /docs/ast_boolean.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_boolean.js.html -------------------------------------------------------------------------------- /docs/ast_break.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_break.js.html -------------------------------------------------------------------------------- /docs/ast_call.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_call.js.html -------------------------------------------------------------------------------- /docs/ast_case.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_case.js.html -------------------------------------------------------------------------------- /docs/ast_cast.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_cast.js.html -------------------------------------------------------------------------------- /docs/ast_catch.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_catch.js.html -------------------------------------------------------------------------------- /docs/ast_class.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_class.js.html -------------------------------------------------------------------------------- /docs/ast_classconstant.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_classconstant.js.html -------------------------------------------------------------------------------- /docs/ast_classreference.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_classreference.js.html -------------------------------------------------------------------------------- /docs/ast_clone.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_clone.js.html -------------------------------------------------------------------------------- /docs/ast_closure.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_closure.js.html -------------------------------------------------------------------------------- /docs/ast_comment.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_comment.js.html -------------------------------------------------------------------------------- /docs/ast_commentblock.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_commentblock.js.html -------------------------------------------------------------------------------- /docs/ast_commentline.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_commentline.js.html -------------------------------------------------------------------------------- /docs/ast_constant.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_constant.js.html -------------------------------------------------------------------------------- /docs/ast_constantstatement.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_constantstatement.js.html -------------------------------------------------------------------------------- /docs/ast_constref.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_constref.js.html -------------------------------------------------------------------------------- /docs/ast_continue.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_continue.js.html -------------------------------------------------------------------------------- /docs/ast_declaration.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_declaration.js.html -------------------------------------------------------------------------------- /docs/ast_declare.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_declare.js.html -------------------------------------------------------------------------------- /docs/ast_declaredirective.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_declaredirective.js.html -------------------------------------------------------------------------------- /docs/ast_do.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_do.js.html -------------------------------------------------------------------------------- /docs/ast_echo.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_echo.js.html -------------------------------------------------------------------------------- /docs/ast_empty.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_empty.js.html -------------------------------------------------------------------------------- /docs/ast_encapsed.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_encapsed.js.html -------------------------------------------------------------------------------- /docs/ast_encapsedpart.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_encapsedpart.js.html -------------------------------------------------------------------------------- /docs/ast_entry.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_entry.js.html -------------------------------------------------------------------------------- /docs/ast_error.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_error.js.html -------------------------------------------------------------------------------- /docs/ast_eval.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_eval.js.html -------------------------------------------------------------------------------- /docs/ast_exit.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_exit.js.html -------------------------------------------------------------------------------- /docs/ast_expression.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_expression.js.html -------------------------------------------------------------------------------- /docs/ast_expressionstatement.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_expressionstatement.js.html -------------------------------------------------------------------------------- /docs/ast_for.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_for.js.html -------------------------------------------------------------------------------- /docs/ast_foreach.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_foreach.js.html -------------------------------------------------------------------------------- /docs/ast_function.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_function.js.html -------------------------------------------------------------------------------- /docs/ast_global.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_global.js.html -------------------------------------------------------------------------------- /docs/ast_goto.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_goto.js.html -------------------------------------------------------------------------------- /docs/ast_halt.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_halt.js.html -------------------------------------------------------------------------------- /docs/ast_identifier.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_identifier.js.html -------------------------------------------------------------------------------- /docs/ast_if.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_if.js.html -------------------------------------------------------------------------------- /docs/ast_include.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_include.js.html -------------------------------------------------------------------------------- /docs/ast_inline.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_inline.js.html -------------------------------------------------------------------------------- /docs/ast_interface.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_interface.js.html -------------------------------------------------------------------------------- /docs/ast_isset.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_isset.js.html -------------------------------------------------------------------------------- /docs/ast_label.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_label.js.html -------------------------------------------------------------------------------- /docs/ast_list.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_list.js.html -------------------------------------------------------------------------------- /docs/ast_literal.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_literal.js.html -------------------------------------------------------------------------------- /docs/ast_location.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_location.js.html -------------------------------------------------------------------------------- /docs/ast_lookup.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_lookup.js.html -------------------------------------------------------------------------------- /docs/ast_magic.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_magic.js.html -------------------------------------------------------------------------------- /docs/ast_method.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_method.js.html -------------------------------------------------------------------------------- /docs/ast_namespace.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_namespace.js.html -------------------------------------------------------------------------------- /docs/ast_new.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_new.js.html -------------------------------------------------------------------------------- /docs/ast_node.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_node.js.html -------------------------------------------------------------------------------- /docs/ast_noop.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_noop.js.html -------------------------------------------------------------------------------- /docs/ast_nowdoc.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_nowdoc.js.html -------------------------------------------------------------------------------- /docs/ast_number.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_number.js.html -------------------------------------------------------------------------------- /docs/ast_offsetlookup.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_offsetlookup.js.html -------------------------------------------------------------------------------- /docs/ast_operation.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_operation.js.html -------------------------------------------------------------------------------- /docs/ast_parameter.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_parameter.js.html -------------------------------------------------------------------------------- /docs/ast_parenthesis.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_parenthesis.js.html -------------------------------------------------------------------------------- /docs/ast_parentreference.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_parentreference.js.html -------------------------------------------------------------------------------- /docs/ast_position.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_position.js.html -------------------------------------------------------------------------------- /docs/ast_post.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_post.js.html -------------------------------------------------------------------------------- /docs/ast_pre.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_pre.js.html -------------------------------------------------------------------------------- /docs/ast_print.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_print.js.html -------------------------------------------------------------------------------- /docs/ast_program.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_program.js.html -------------------------------------------------------------------------------- /docs/ast_property.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_property.js.html -------------------------------------------------------------------------------- /docs/ast_propertylookup.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_propertylookup.js.html -------------------------------------------------------------------------------- /docs/ast_propertystatement.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_propertystatement.js.html -------------------------------------------------------------------------------- /docs/ast_reference.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_reference.js.html -------------------------------------------------------------------------------- /docs/ast_retif.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_retif.js.html -------------------------------------------------------------------------------- /docs/ast_return.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_return.js.html -------------------------------------------------------------------------------- /docs/ast_selfreference.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_selfreference.js.html -------------------------------------------------------------------------------- /docs/ast_silent.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_silent.js.html -------------------------------------------------------------------------------- /docs/ast_statement.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_statement.js.html -------------------------------------------------------------------------------- /docs/ast_static.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_static.js.html -------------------------------------------------------------------------------- /docs/ast_staticlookup.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_staticlookup.js.html -------------------------------------------------------------------------------- /docs/ast_staticreference.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_staticreference.js.html -------------------------------------------------------------------------------- /docs/ast_staticvariable.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_staticvariable.js.html -------------------------------------------------------------------------------- /docs/ast_string.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_string.js.html -------------------------------------------------------------------------------- /docs/ast_switch.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_switch.js.html -------------------------------------------------------------------------------- /docs/ast_sys.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_sys.js.html -------------------------------------------------------------------------------- /docs/ast_throw.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_throw.js.html -------------------------------------------------------------------------------- /docs/ast_trait.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_trait.js.html -------------------------------------------------------------------------------- /docs/ast_traitalias.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_traitalias.js.html -------------------------------------------------------------------------------- /docs/ast_traitprecedence.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_traitprecedence.js.html -------------------------------------------------------------------------------- /docs/ast_traituse.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_traituse.js.html -------------------------------------------------------------------------------- /docs/ast_try.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_try.js.html -------------------------------------------------------------------------------- /docs/ast_typereference.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_typereference.js.html -------------------------------------------------------------------------------- /docs/ast_unary.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_unary.js.html -------------------------------------------------------------------------------- /docs/ast_unset.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_unset.js.html -------------------------------------------------------------------------------- /docs/ast_usegroup.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_usegroup.js.html -------------------------------------------------------------------------------- /docs/ast_useitem.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_useitem.js.html -------------------------------------------------------------------------------- /docs/ast_variable.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_variable.js.html -------------------------------------------------------------------------------- /docs/ast_variadic.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_variadic.js.html -------------------------------------------------------------------------------- /docs/ast_while.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_while.js.html -------------------------------------------------------------------------------- /docs/ast_yield.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_yield.js.html -------------------------------------------------------------------------------- /docs/ast_yieldfrom.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/ast_yieldfrom.js.html -------------------------------------------------------------------------------- /docs/engine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/engine.html -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-LightItalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Semibold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Semibold-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Semibold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Semibold-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Semibold-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-Semibold-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-SemiboldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-SemiboldItalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-SemiboldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-SemiboldItalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-SemiboldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-SemiboldItalic-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/OpenSans-SemiboldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/fonts/OpenSans-SemiboldItalic-webfont.woff -------------------------------------------------------------------------------- /docs/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/global.html -------------------------------------------------------------------------------- /docs/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/icons/home.svg -------------------------------------------------------------------------------- /docs/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/icons/search.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/index.js.html -------------------------------------------------------------------------------- /docs/lexer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/lexer.html -------------------------------------------------------------------------------- /docs/lexer.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/lexer.js.html -------------------------------------------------------------------------------- /docs/lexer_comments.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/lexer_comments.js.html -------------------------------------------------------------------------------- /docs/lexer_strings.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/lexer_strings.js.html -------------------------------------------------------------------------------- /docs/parser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser.html -------------------------------------------------------------------------------- /docs/parser.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser.js.html -------------------------------------------------------------------------------- /docs/parser_array.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_array.js.html -------------------------------------------------------------------------------- /docs/parser_class.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_class.js.html -------------------------------------------------------------------------------- /docs/parser_comment.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_comment.js.html -------------------------------------------------------------------------------- /docs/parser_expr.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_expr.js.html -------------------------------------------------------------------------------- /docs/parser_function.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_function.js.html -------------------------------------------------------------------------------- /docs/parser_if.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_if.js.html -------------------------------------------------------------------------------- /docs/parser_loops.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_loops.js.html -------------------------------------------------------------------------------- /docs/parser_main.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_main.js.html -------------------------------------------------------------------------------- /docs/parser_namespace.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_namespace.js.html -------------------------------------------------------------------------------- /docs/parser_scalar.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_scalar.js.html -------------------------------------------------------------------------------- /docs/parser_statement.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_statement.js.html -------------------------------------------------------------------------------- /docs/parser_switch.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_switch.js.html -------------------------------------------------------------------------------- /docs/parser_try.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_try.js.html -------------------------------------------------------------------------------- /docs/parser_utils.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_utils.js.html -------------------------------------------------------------------------------- /docs/parser_variable.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/parser_variable.js.html -------------------------------------------------------------------------------- /docs/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/scripts/pagelocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/scripts/pagelocation.js -------------------------------------------------------------------------------- /docs/styles/collapse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/styles/collapse.css -------------------------------------------------------------------------------- /docs/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/styles/jsdoc-default.css -------------------------------------------------------------------------------- /docs/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /docs/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /docs/tokens.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/tokens.js.html -------------------------------------------------------------------------------- /docs/tutorial-AST_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/tutorial-AST_.html -------------------------------------------------------------------------------- /docs/tutorial-Engine_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/tutorial-Engine_.html -------------------------------------------------------------------------------- /docs/tutorial-Options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/tutorial-Options.html -------------------------------------------------------------------------------- /docs/tutorial-Parser_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/tutorial-Parser_.html -------------------------------------------------------------------------------- /docs/variadic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/docs/variadic.html -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/package.json -------------------------------------------------------------------------------- /src/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast.js -------------------------------------------------------------------------------- /src/ast/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/array.js -------------------------------------------------------------------------------- /src/ast/arrowfunc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/arrowfunc.js -------------------------------------------------------------------------------- /src/ast/assign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/assign.js -------------------------------------------------------------------------------- /src/ast/assignref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/assignref.js -------------------------------------------------------------------------------- /src/ast/attrgroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/attrgroup.js -------------------------------------------------------------------------------- /src/ast/attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/attribute.js -------------------------------------------------------------------------------- /src/ast/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/bin.js -------------------------------------------------------------------------------- /src/ast/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/block.js -------------------------------------------------------------------------------- /src/ast/boolean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/boolean.js -------------------------------------------------------------------------------- /src/ast/break.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/break.js -------------------------------------------------------------------------------- /src/ast/byref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/byref.js -------------------------------------------------------------------------------- /src/ast/call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/call.js -------------------------------------------------------------------------------- /src/ast/case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/case.js -------------------------------------------------------------------------------- /src/ast/cast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/cast.js -------------------------------------------------------------------------------- /src/ast/catch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/catch.js -------------------------------------------------------------------------------- /src/ast/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/class.js -------------------------------------------------------------------------------- /src/ast/classconstant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/classconstant.js -------------------------------------------------------------------------------- /src/ast/clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/clone.js -------------------------------------------------------------------------------- /src/ast/closure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/closure.js -------------------------------------------------------------------------------- /src/ast/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/comment.js -------------------------------------------------------------------------------- /src/ast/commentblock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/commentblock.js -------------------------------------------------------------------------------- /src/ast/commentline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/commentline.js -------------------------------------------------------------------------------- /src/ast/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/constant.js -------------------------------------------------------------------------------- /src/ast/constantstatement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/constantstatement.js -------------------------------------------------------------------------------- /src/ast/continue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/continue.js -------------------------------------------------------------------------------- /src/ast/declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/declaration.js -------------------------------------------------------------------------------- /src/ast/declare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/declare.js -------------------------------------------------------------------------------- /src/ast/declaredirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/declaredirective.js -------------------------------------------------------------------------------- /src/ast/do.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/do.js -------------------------------------------------------------------------------- /src/ast/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/echo.js -------------------------------------------------------------------------------- /src/ast/empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/empty.js -------------------------------------------------------------------------------- /src/ast/encapsed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/encapsed.js -------------------------------------------------------------------------------- /src/ast/encapsedpart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/encapsedpart.js -------------------------------------------------------------------------------- /src/ast/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/entry.js -------------------------------------------------------------------------------- /src/ast/enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/enum.js -------------------------------------------------------------------------------- /src/ast/enumcase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/enumcase.js -------------------------------------------------------------------------------- /src/ast/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/error.js -------------------------------------------------------------------------------- /src/ast/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/eval.js -------------------------------------------------------------------------------- /src/ast/exit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/exit.js -------------------------------------------------------------------------------- /src/ast/expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/expression.js -------------------------------------------------------------------------------- /src/ast/expressionstatement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/expressionstatement.js -------------------------------------------------------------------------------- /src/ast/for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/for.js -------------------------------------------------------------------------------- /src/ast/foreach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/foreach.js -------------------------------------------------------------------------------- /src/ast/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/function.js -------------------------------------------------------------------------------- /src/ast/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/global.js -------------------------------------------------------------------------------- /src/ast/goto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/goto.js -------------------------------------------------------------------------------- /src/ast/halt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/halt.js -------------------------------------------------------------------------------- /src/ast/identifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/identifier.js -------------------------------------------------------------------------------- /src/ast/if.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/if.js -------------------------------------------------------------------------------- /src/ast/include.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/include.js -------------------------------------------------------------------------------- /src/ast/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/inline.js -------------------------------------------------------------------------------- /src/ast/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/interface.js -------------------------------------------------------------------------------- /src/ast/intersectiontype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/intersectiontype.js -------------------------------------------------------------------------------- /src/ast/isset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/isset.js -------------------------------------------------------------------------------- /src/ast/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/label.js -------------------------------------------------------------------------------- /src/ast/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/list.js -------------------------------------------------------------------------------- /src/ast/literal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/literal.js -------------------------------------------------------------------------------- /src/ast/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/location.js -------------------------------------------------------------------------------- /src/ast/lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/lookup.js -------------------------------------------------------------------------------- /src/ast/magic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/magic.js -------------------------------------------------------------------------------- /src/ast/match.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/match.js -------------------------------------------------------------------------------- /src/ast/matcharm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/matcharm.js -------------------------------------------------------------------------------- /src/ast/method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/method.js -------------------------------------------------------------------------------- /src/ast/name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/name.js -------------------------------------------------------------------------------- /src/ast/namedargument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/namedargument.js -------------------------------------------------------------------------------- /src/ast/namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/namespace.js -------------------------------------------------------------------------------- /src/ast/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/new.js -------------------------------------------------------------------------------- /src/ast/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/node.js -------------------------------------------------------------------------------- /src/ast/noop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/noop.js -------------------------------------------------------------------------------- /src/ast/nowdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/nowdoc.js -------------------------------------------------------------------------------- /src/ast/nullkeyword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/nullkeyword.js -------------------------------------------------------------------------------- /src/ast/nullsafepropertylookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/nullsafepropertylookup.js -------------------------------------------------------------------------------- /src/ast/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/number.js -------------------------------------------------------------------------------- /src/ast/offsetlookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/offsetlookup.js -------------------------------------------------------------------------------- /src/ast/operation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/operation.js -------------------------------------------------------------------------------- /src/ast/parameter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/parameter.js -------------------------------------------------------------------------------- /src/ast/parentreference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/parentreference.js -------------------------------------------------------------------------------- /src/ast/position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/position.js -------------------------------------------------------------------------------- /src/ast/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/post.js -------------------------------------------------------------------------------- /src/ast/pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/pre.js -------------------------------------------------------------------------------- /src/ast/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/print.js -------------------------------------------------------------------------------- /src/ast/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/program.js -------------------------------------------------------------------------------- /src/ast/property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/property.js -------------------------------------------------------------------------------- /src/ast/propertylookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/propertylookup.js -------------------------------------------------------------------------------- /src/ast/propertystatement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/propertystatement.js -------------------------------------------------------------------------------- /src/ast/reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/reference.js -------------------------------------------------------------------------------- /src/ast/retif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/retif.js -------------------------------------------------------------------------------- /src/ast/return.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/return.js -------------------------------------------------------------------------------- /src/ast/selfreference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/selfreference.js -------------------------------------------------------------------------------- /src/ast/silent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/silent.js -------------------------------------------------------------------------------- /src/ast/statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/statement.js -------------------------------------------------------------------------------- /src/ast/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/static.js -------------------------------------------------------------------------------- /src/ast/staticlookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/staticlookup.js -------------------------------------------------------------------------------- /src/ast/staticreference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/staticreference.js -------------------------------------------------------------------------------- /src/ast/staticvariable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/staticvariable.js -------------------------------------------------------------------------------- /src/ast/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/string.js -------------------------------------------------------------------------------- /src/ast/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/switch.js -------------------------------------------------------------------------------- /src/ast/throw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/throw.js -------------------------------------------------------------------------------- /src/ast/trait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/trait.js -------------------------------------------------------------------------------- /src/ast/traitalias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/traitalias.js -------------------------------------------------------------------------------- /src/ast/traitprecedence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/traitprecedence.js -------------------------------------------------------------------------------- /src/ast/traituse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/traituse.js -------------------------------------------------------------------------------- /src/ast/try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/try.js -------------------------------------------------------------------------------- /src/ast/typereference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/typereference.js -------------------------------------------------------------------------------- /src/ast/unary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/unary.js -------------------------------------------------------------------------------- /src/ast/uniontype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/uniontype.js -------------------------------------------------------------------------------- /src/ast/unset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/unset.js -------------------------------------------------------------------------------- /src/ast/usegroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/usegroup.js -------------------------------------------------------------------------------- /src/ast/useitem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/useitem.js -------------------------------------------------------------------------------- /src/ast/variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/variable.js -------------------------------------------------------------------------------- /src/ast/variadic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/variadic.js -------------------------------------------------------------------------------- /src/ast/variadicplaceholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/variadicplaceholder.js -------------------------------------------------------------------------------- /src/ast/while.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/while.js -------------------------------------------------------------------------------- /src/ast/yield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/yield.js -------------------------------------------------------------------------------- /src/ast/yieldfrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/ast/yieldfrom.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/lexer.js -------------------------------------------------------------------------------- /src/lexer/attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/lexer/attribute.js -------------------------------------------------------------------------------- /src/lexer/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/lexer/comments.js -------------------------------------------------------------------------------- /src/lexer/initial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/lexer/initial.js -------------------------------------------------------------------------------- /src/lexer/numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/lexer/numbers.js -------------------------------------------------------------------------------- /src/lexer/property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/lexer/property.js -------------------------------------------------------------------------------- /src/lexer/scripting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/lexer/scripting.js -------------------------------------------------------------------------------- /src/lexer/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/lexer/strings.js -------------------------------------------------------------------------------- /src/lexer/tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/lexer/tokens.js -------------------------------------------------------------------------------- /src/lexer/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/lexer/utils.js -------------------------------------------------------------------------------- /src/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser.js -------------------------------------------------------------------------------- /src/parser/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/array.js -------------------------------------------------------------------------------- /src/parser/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/class.js -------------------------------------------------------------------------------- /src/parser/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/comment.js -------------------------------------------------------------------------------- /src/parser/enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/enum.js -------------------------------------------------------------------------------- /src/parser/expr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/expr.js -------------------------------------------------------------------------------- /src/parser/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/function.js -------------------------------------------------------------------------------- /src/parser/if.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/if.js -------------------------------------------------------------------------------- /src/parser/loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/loops.js -------------------------------------------------------------------------------- /src/parser/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/main.js -------------------------------------------------------------------------------- /src/parser/namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/namespace.js -------------------------------------------------------------------------------- /src/parser/scalar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/scalar.js -------------------------------------------------------------------------------- /src/parser/statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/statement.js -------------------------------------------------------------------------------- /src/parser/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/switch.js -------------------------------------------------------------------------------- /src/parser/try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/try.js -------------------------------------------------------------------------------- /src/parser/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/utils.js -------------------------------------------------------------------------------- /src/parser/variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/parser/variable.js -------------------------------------------------------------------------------- /src/tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/src/tokens.js -------------------------------------------------------------------------------- /test/ast.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/ast.test.js -------------------------------------------------------------------------------- /test/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/benchmark.js -------------------------------------------------------------------------------- /test/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/debug.js -------------------------------------------------------------------------------- /test/location.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/location.test.js -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/main.js -------------------------------------------------------------------------------- /test/precedence.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/precedence.test.js -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/acid.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/acid.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/array.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/array.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/arrowfunc.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/arrowfunc.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/assign.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/assign.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/ast.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/ast.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/attributes.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/attributes.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/bin.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/bin.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/block.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/block.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/boolean.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/boolean.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/break.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/break.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/buffer.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/buffer.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/byref.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/byref.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/call.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/call.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/class.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/class.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/classconstant.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/classconstant.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/classreference.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/classreference.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/clone.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/clone.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/closure.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/closure.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/comment.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/comment.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/constantstatement.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/constantstatement.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/continue.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/continue.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/declare.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/declare.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/echo.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/echo.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/empty.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/empty.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/encapsed.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/encapsed.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/enum.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/enum.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/eval.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/eval.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/exit.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/exit.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/expr.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/expr.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/foreach.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/foreach.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/function.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/function.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/global.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/global.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/goto.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/goto.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/graceful.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/graceful.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/heredoc.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/heredoc.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/if.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/if.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/include.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/include.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/interface.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/interface.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/isset.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/isset.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/label.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/label.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/lexer.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/lexer.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/list.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/list.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/location.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/location.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/loop.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/loop.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/magic.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/magic.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/match.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/match.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/namespace.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/namespace.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/new.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/new.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/nowdoc.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/nowdoc.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/nullsavepropertylookup.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/nullsavepropertylookup.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/number.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/number.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/offsetlookup.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/offsetlookup.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/parentreference.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/parentreference.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/php5.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/php5.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/php73.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/php73.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/post.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/post.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/pre.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/pre.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/print.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/print.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/property.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/property.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/propertylookup.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/propertylookup.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/propertystatement.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/propertystatement.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/return.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/return.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/scalar.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/scalar.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/selfreference.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/selfreference.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/silent.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/silent.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/statement.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/statement.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/static.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/static.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/staticlookup.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/staticlookup.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/staticreference.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/staticreference.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/string.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/string.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/switch.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/switch.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/throw.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/throw.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/token.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/token.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/trait.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/trait.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/traitprecedence.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/traitprecedence.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/try.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/try.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/typereference.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/typereference.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/unary.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/unary.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/union.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/union.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/unset.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/unset.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/usegroup.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/usegroup.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/useitem.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/useitem.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/variable.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/variable.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/yield.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/yield.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/__snapshots__/yieldfrom.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/__snapshots__/yieldfrom.test.js.snap -------------------------------------------------------------------------------- /test/snapshot/acid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/acid.test.js -------------------------------------------------------------------------------- /test/snapshot/array.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/array.test.js -------------------------------------------------------------------------------- /test/snapshot/arrowfunc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/arrowfunc.test.js -------------------------------------------------------------------------------- /test/snapshot/assign.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/assign.test.js -------------------------------------------------------------------------------- /test/snapshot/ast.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/ast.test.js -------------------------------------------------------------------------------- /test/snapshot/attributes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/attributes.test.js -------------------------------------------------------------------------------- /test/snapshot/bin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/bin.test.js -------------------------------------------------------------------------------- /test/snapshot/block.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/block.test.js -------------------------------------------------------------------------------- /test/snapshot/boolean.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/boolean.test.js -------------------------------------------------------------------------------- /test/snapshot/break.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/break.test.js -------------------------------------------------------------------------------- /test/snapshot/buffer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/buffer.test.js -------------------------------------------------------------------------------- /test/snapshot/byref.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/byref.test.js -------------------------------------------------------------------------------- /test/snapshot/call.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/call.test.js -------------------------------------------------------------------------------- /test/snapshot/class.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/class.test.js -------------------------------------------------------------------------------- /test/snapshot/classconstant.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/classconstant.test.js -------------------------------------------------------------------------------- /test/snapshot/classreference.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/classreference.test.js -------------------------------------------------------------------------------- /test/snapshot/clone.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/clone.test.js -------------------------------------------------------------------------------- /test/snapshot/closure.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/closure.test.js -------------------------------------------------------------------------------- /test/snapshot/comment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/comment.test.js -------------------------------------------------------------------------------- /test/snapshot/constantstatement.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/constantstatement.test.js -------------------------------------------------------------------------------- /test/snapshot/continue.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/continue.test.js -------------------------------------------------------------------------------- /test/snapshot/declare.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/declare.test.js -------------------------------------------------------------------------------- /test/snapshot/echo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/echo.test.js -------------------------------------------------------------------------------- /test/snapshot/empty.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/empty.test.js -------------------------------------------------------------------------------- /test/snapshot/encapsed.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/encapsed.test.js -------------------------------------------------------------------------------- /test/snapshot/enum.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/enum.test.js -------------------------------------------------------------------------------- /test/snapshot/eval.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/eval.test.js -------------------------------------------------------------------------------- /test/snapshot/exit.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/exit.test.js -------------------------------------------------------------------------------- /test/snapshot/expr.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/expr.test.js -------------------------------------------------------------------------------- /test/snapshot/foreach.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/foreach.test.js -------------------------------------------------------------------------------- /test/snapshot/function.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/function.test.js -------------------------------------------------------------------------------- /test/snapshot/global.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/global.test.js -------------------------------------------------------------------------------- /test/snapshot/goto.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/goto.test.js -------------------------------------------------------------------------------- /test/snapshot/graceful.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/graceful.test.js -------------------------------------------------------------------------------- /test/snapshot/heredoc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/heredoc.test.js -------------------------------------------------------------------------------- /test/snapshot/if.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/if.test.js -------------------------------------------------------------------------------- /test/snapshot/include.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/include.test.js -------------------------------------------------------------------------------- /test/snapshot/interface.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/interface.test.js -------------------------------------------------------------------------------- /test/snapshot/isset.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/isset.test.js -------------------------------------------------------------------------------- /test/snapshot/label.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/label.test.js -------------------------------------------------------------------------------- /test/snapshot/lexer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/lexer.test.js -------------------------------------------------------------------------------- /test/snapshot/list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/list.test.js -------------------------------------------------------------------------------- /test/snapshot/location.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/location.test.js -------------------------------------------------------------------------------- /test/snapshot/loop.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/loop.test.js -------------------------------------------------------------------------------- /test/snapshot/magic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/magic.test.js -------------------------------------------------------------------------------- /test/snapshot/match.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/match.test.js -------------------------------------------------------------------------------- /test/snapshot/namespace.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/namespace.test.js -------------------------------------------------------------------------------- /test/snapshot/new.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/new.test.js -------------------------------------------------------------------------------- /test/snapshot/nowdoc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/nowdoc.test.js -------------------------------------------------------------------------------- /test/snapshot/nullsavepropertylookup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/nullsavepropertylookup.test.js -------------------------------------------------------------------------------- /test/snapshot/number.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/number.test.js -------------------------------------------------------------------------------- /test/snapshot/offsetlookup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/offsetlookup.test.js -------------------------------------------------------------------------------- /test/snapshot/parentreference.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/parentreference.test.js -------------------------------------------------------------------------------- /test/snapshot/php5.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/php5.test.js -------------------------------------------------------------------------------- /test/snapshot/php73.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/php73.test.js -------------------------------------------------------------------------------- /test/snapshot/post.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/post.test.js -------------------------------------------------------------------------------- /test/snapshot/pre.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/pre.test.js -------------------------------------------------------------------------------- /test/snapshot/print.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/print.test.js -------------------------------------------------------------------------------- /test/snapshot/property.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/property.test.js -------------------------------------------------------------------------------- /test/snapshot/propertylookup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/propertylookup.test.js -------------------------------------------------------------------------------- /test/snapshot/propertystatement.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/propertystatement.test.js -------------------------------------------------------------------------------- /test/snapshot/return.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/return.test.js -------------------------------------------------------------------------------- /test/snapshot/scalar.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/scalar.test.js -------------------------------------------------------------------------------- /test/snapshot/selfreference.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/selfreference.test.js -------------------------------------------------------------------------------- /test/snapshot/silent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/silent.test.js -------------------------------------------------------------------------------- /test/snapshot/statement.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/statement.test.js -------------------------------------------------------------------------------- /test/snapshot/static.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/static.test.js -------------------------------------------------------------------------------- /test/snapshot/staticlookup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/staticlookup.test.js -------------------------------------------------------------------------------- /test/snapshot/staticreference.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/staticreference.test.js -------------------------------------------------------------------------------- /test/snapshot/string.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/string.test.js -------------------------------------------------------------------------------- /test/snapshot/switch.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/switch.test.js -------------------------------------------------------------------------------- /test/snapshot/throw.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/throw.test.js -------------------------------------------------------------------------------- /test/snapshot/token.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/token.test.js -------------------------------------------------------------------------------- /test/snapshot/trait.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/trait.test.js -------------------------------------------------------------------------------- /test/snapshot/traitprecedence.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/traitprecedence.test.js -------------------------------------------------------------------------------- /test/snapshot/try.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/try.test.js -------------------------------------------------------------------------------- /test/snapshot/typereference.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/typereference.test.js -------------------------------------------------------------------------------- /test/snapshot/unary.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/unary.test.js -------------------------------------------------------------------------------- /test/snapshot/union.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/union.test.js -------------------------------------------------------------------------------- /test/snapshot/unset.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/unset.test.js -------------------------------------------------------------------------------- /test/snapshot/usegroup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/usegroup.test.js -------------------------------------------------------------------------------- /test/snapshot/useitem.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/useitem.test.js -------------------------------------------------------------------------------- /test/snapshot/variable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/variable.test.js -------------------------------------------------------------------------------- /test/snapshot/yield.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/yield.test.js -------------------------------------------------------------------------------- /test/snapshot/yieldfrom.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/snapshot/yieldfrom.test.js -------------------------------------------------------------------------------- /test/version.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/test/version.test.js -------------------------------------------------------------------------------- /tutorials/AST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/tutorials/AST.md -------------------------------------------------------------------------------- /tutorials/Engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/tutorials/Engine.md -------------------------------------------------------------------------------- /tutorials/Options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/tutorials/Options.md -------------------------------------------------------------------------------- /tutorials/Parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/tutorials/Parser.md -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/types.d.ts -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glayzzle/php-parser/HEAD/yarn.lock --------------------------------------------------------------------------------