123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866 |
- Error recovery
- -----
- <?php
- foo()
- bar()
- baz()
- -----
- Syntax error, unexpected T_STRING from 4:1 to 4:3
- Syntax error, unexpected T_STRING from 5:1 to 5:3
- Syntax error, unexpected EOF from 5:6 to 5:6
- array(
- 0: Expr_FuncCall(
- name: Name(
- parts: array(
- 0: foo
- )
- )
- args: array(
- )
- )
- 1: Expr_FuncCall(
- name: Name(
- parts: array(
- 0: bar
- )
- )
- args: array(
- )
- )
- 2: Expr_FuncCall(
- name: Name(
- parts: array(
- 0: baz
- )
- )
- args: array(
- )
- )
- )
- -----
- <?php
- foo()
- bar();
- baz();
- -----
- Syntax error, unexpected T_STRING from 4:1 to 4:3
- array(
- 0: Expr_FuncCall(
- name: Name(
- parts: array(
- 0: foo
- )
- )
- args: array(
- )
- )
- 1: Expr_FuncCall(
- name: Name(
- parts: array(
- 0: bar
- )
- )
- args: array(
- )
- )
- 2: Expr_FuncCall(
- name: Name(
- parts: array(
- 0: baz
- )
- )
- args: array(
- )
- )
- )
- -----
- <?php
- foo();
- bar()
- baz();
- -----
- Syntax error, unexpected T_STRING from 5:1 to 5:3
- array(
- 0: Expr_FuncCall(
- name: Name(
- parts: array(
- 0: foo
- )
- )
- args: array(
- )
- )
- 1: Expr_FuncCall(
- name: Name(
- parts: array(
- 0: bar
- )
- )
- args: array(
- )
- )
- 2: Expr_FuncCall(
- name: Name(
- parts: array(
- 0: baz
- )
- )
- args: array(
- )
- )
- )
- -----
- <?php
- abc;
- 1 + ;
- -----
- Syntax error, unexpected ';' from 3:5 to 3:5
- array(
- 0: Expr_ConstFetch(
- name: Name(
- parts: array(
- 0: abc
- )
- )
- )
- 1: Scalar_LNumber(
- value: 1
- )
- )
- -----
- <?php
- function test() {
- 1 +
- }
- -----
- Syntax error, unexpected '}' from 4:1 to 4:1
- array(
- 0: Stmt_Function(
- byRef: false
- name: test
- params: array(
- )
- returnType: null
- stmts: array(
- 0: Scalar_LNumber(
- value: 1
- )
- )
- )
- )
- -----
- <?php
- $i = 0;
- while
- $j = 1;
- $k = 2;
- -----
- Syntax error, unexpected T_VARIABLE, expecting '(' from 6:1 to 6:2
- array(
- 0: Expr_Assign(
- var: Expr_Variable(
- name: i
- )
- expr: Scalar_LNumber(
- value: 0
- )
- )
- 1: Expr_Assign(
- var: Expr_Variable(
- name: j
- )
- expr: Scalar_LNumber(
- value: 1
- )
- )
- 2: Expr_Assign(
- var: Expr_Variable(
- name: k
- )
- expr: Scalar_LNumber(
- value: 2
- )
- )
- )
- -----
- <?php
- $i = 0;
- while () {
- $j = 1;
- }
- $k = 2;
- // The output here drops the loop - would require Error node to handle this
- -----
- Syntax error, unexpected ')' from 4:8 to 4:8
- array(
- 0: Expr_Assign(
- var: Expr_Variable(
- name: i
- )
- expr: Scalar_LNumber(
- value: 0
- )
- )
- 1: Expr_Assign(
- var: Expr_Variable(
- name: j
- )
- expr: Scalar_LNumber(
- value: 1
- )
- )
- 2: Expr_Assign(
- var: Expr_Variable(
- name: k
- )
- expr: Scalar_LNumber(
- value: 2
- )
- )
- 3: Stmt_Nop(
- comments: array(
- 0: // The output here drops the loop - would require Error node to handle this
- )
- )
- )
- -----
- <?php
- // Can't recover this yet, as the '}' for the inner_statement_list
- // is always required.
- $i = 0;
- while (true) {
- $i = 1;
- $i = 2;
- -----
- Syntax error, unexpected EOF from 8:12 to 8:12
- -----
- <?php
- $foo->
- ;
- -----
- !!positions
- Syntax error, unexpected ';', expecting T_STRING or T_VARIABLE or '{' or '$' from 3:1 to 3:1
- array(
- 0: Expr_PropertyFetch[2:1 - 2:6](
- var: Expr_Variable[2:1 - 2:4](
- name: foo
- )
- name: Expr_Error[3:1 - 2:6](
- )
- )
- )
- -----
- <?php
- function foo() {
- $bar->
- }
- -----
- !!positions
- Syntax error, unexpected '}', expecting T_STRING or T_VARIABLE or '{' or '$' from 4:1 to 4:1
- array(
- 0: Stmt_Function[2:1 - 4:1](
- byRef: false
- name: foo
- params: array(
- )
- returnType: null
- stmts: array(
- 0: Expr_PropertyFetch[3:5 - 3:10](
- var: Expr_Variable[3:5 - 3:8](
- name: bar
- )
- name: Expr_Error[4:1 - 3:10](
- )
- )
- )
- )
- )
- -----
- <?php
- new T
- -----
- Syntax error, unexpected EOF from 2:6 to 2:6
- array(
- 0: Expr_New(
- class: Name(
- parts: array(
- 0: T
- )
- )
- args: array(
- )
- )
- )
- -----
- <?php
- new
- -----
- !!php7,positions
- Syntax error, unexpected EOF from 2:4 to 2:4
- array(
- 0: Expr_New[2:1 - 2:3](
- class: Expr_Error[2:4 - 2:3](
- )
- args: array(
- )
- )
- )
- -----
- <?php
- $foo instanceof
- -----
- !!php7
- Syntax error, unexpected EOF from 2:16 to 2:16
- array(
- 0: Expr_Instanceof(
- expr: Expr_Variable(
- name: foo
- )
- class: Expr_Error(
- )
- )
- )
- -----
- <?php
- $
- -----
- !!php7
- Syntax error, unexpected EOF, expecting T_VARIABLE or '{' or '$' from 2:2 to 2:2
- array(
- 0: Expr_Variable(
- name: Expr_Error(
- )
- )
- )
- -----
- <?php
- Foo::$
- -----
- !!php7
- Syntax error, unexpected EOF, expecting T_VARIABLE or '{' or '$' from 2:7 to 2:7
- array(
- 0: Expr_StaticPropertyFetch(
- class: Name(
- parts: array(
- 0: Foo
- )
- )
- name: Expr_Error(
- )
- )
- )
- -----
- <?php
- Foo::
- -----
- !!php7
- Syntax error, unexpected EOF from 2:6 to 2:6
- array(
- 0: Expr_ClassConstFetch(
- class: Name(
- parts: array(
- 0: Foo
- )
- )
- name: Expr_Error(
- )
- )
- )
- -----
- <?php
- namespace Foo
- use A
- use function a
- use A\{B}
- const A = 1
- break
- break 2
- continue
- continue 2
- return
- return 2
- echo $a
- unset($a)
- throw $x
- goto label
- -----
- !!php7
- Syntax error, unexpected T_USE, expecting ';' or '{' from 3:1 to 3:3
- Syntax error, unexpected T_USE, expecting ';' from 5:1 to 5:3
- Syntax error, unexpected T_CONST, expecting ';' from 6:1 to 6:5
- Syntax error, unexpected T_BREAK, expecting ';' from 7:1 to 7:5
- Syntax error, unexpected T_THROW, expecting ';' from 15:1 to 15:5
- array(
- 0: Stmt_Namespace(
- name: Name(
- parts: array(
- 0: Foo
- )
- )
- stmts: array(
- 0: Stmt_Use(
- type: TYPE_NORMAL (1)
- uses: array(
- 0: Stmt_UseUse(
- type: TYPE_UNKNOWN (0)
- name: Name(
- parts: array(
- 0: A
- )
- )
- alias: A
- )
- )
- )
- 1: Stmt_Use(
- type: TYPE_FUNCTION (2)
- uses: array(
- 0: Stmt_UseUse(
- type: TYPE_UNKNOWN (0)
- name: Name(
- parts: array(
- 0: a
- )
- )
- alias: a
- )
- )
- )
- 2: Stmt_GroupUse(
- type: TYPE_UNKNOWN (0)
- prefix: Name(
- parts: array(
- 0: A
- )
- )
- uses: array(
- 0: Stmt_UseUse(
- type: TYPE_NORMAL (1)
- name: Name(
- parts: array(
- 0: B
- )
- )
- alias: B
- )
- )
- )
- 3: Stmt_Const(
- consts: array(
- 0: Const(
- name: A
- value: Scalar_LNumber(
- value: 1
- )
- )
- )
- )
- 4: Stmt_Break(
- num: null
- )
- 5: Stmt_Break(
- num: Scalar_LNumber(
- value: 2
- )
- )
- 6: Stmt_Continue(
- num: null
- )
- 7: Stmt_Continue(
- num: Scalar_LNumber(
- value: 2
- )
- )
- 8: Stmt_Return(
- expr: null
- )
- 9: Stmt_Return(
- expr: Scalar_LNumber(
- value: 2
- )
- )
- 10: Stmt_Echo(
- exprs: array(
- 0: Expr_Variable(
- name: a
- )
- )
- )
- 11: Stmt_Unset(
- vars: array(
- 0: Expr_Variable(
- name: a
- )
- )
- )
- 12: Stmt_Throw(
- expr: Expr_Variable(
- name: x
- )
- )
- 13: Stmt_Goto(
- name: label
- )
- )
- )
- )
- -----
- <?php
- use A\{B, };
- use function A\{b, };
- use A, ;
- const A = 42, ;
- class X implements Y, {
- use A, ;
- use A, {
- A::b insteadof C, ;
- }
- const A = 42, ;
- public $x, ;
- }
- interface I extends J, {}
- unset($x, );
- isset($x, );
- declare(a=42, );
- function foo($a, ) {}
- foo($a, );
- global $a, ;
- static $a, ;
- echo $a, ;
- for ($a, ; $b, ; $c, );
- function ($a, ) use ($b, ) {};
- -----
- !!php7
- A trailing comma is not allowed here from 5:6 to 5:6
- A trailing comma is not allowed here from 6:13 to 6:13
- A trailing comma is not allowed here from 8:21 to 8:21
- A trailing comma is not allowed here from 9:10 to 9:10
- A trailing comma is not allowed here from 10:10 to 10:10
- A trailing comma is not allowed here from 11:25 to 11:25
- A trailing comma is not allowed here from 13:17 to 13:17
- A trailing comma is not allowed here from 14:14 to 14:14
- A trailing comma is not allowed here from 16:22 to 16:22
- A trailing comma is not allowed here from 18:9 to 18:9
- A trailing comma is not allowed here from 19:9 to 19:9
- A trailing comma is not allowed here from 21:13 to 21:13
- A trailing comma is not allowed here from 23:16 to 23:16
- A trailing comma is not allowed here from 24:7 to 24:7
- A trailing comma is not allowed here from 25:10 to 25:10
- A trailing comma is not allowed here from 26:10 to 26:10
- A trailing comma is not allowed here from 27:8 to 27:8
- A trailing comma is not allowed here from 29:8 to 29:8
- A trailing comma is not allowed here from 29:14 to 29:14
- A trailing comma is not allowed here from 29:20 to 29:20
- A trailing comma is not allowed here from 30:13 to 30:13
- A trailing comma is not allowed here from 30:24 to 30:24
- array(
- 0: Stmt_GroupUse(
- type: TYPE_UNKNOWN (0)
- prefix: Name(
- parts: array(
- 0: A
- )
- )
- uses: array(
- 0: Stmt_UseUse(
- type: TYPE_NORMAL (1)
- name: Name(
- parts: array(
- 0: B
- )
- )
- alias: B
- )
- )
- )
- 1: Stmt_GroupUse(
- type: TYPE_FUNCTION (2)
- prefix: Name(
- parts: array(
- 0: A
- )
- )
- uses: array(
- 0: Stmt_UseUse(
- type: TYPE_UNKNOWN (0)
- name: Name(
- parts: array(
- 0: b
- )
- )
- alias: b
- )
- )
- )
- 2: Stmt_Use(
- type: TYPE_NORMAL (1)
- uses: array(
- 0: Stmt_UseUse(
- type: TYPE_UNKNOWN (0)
- name: Name(
- parts: array(
- 0: A
- )
- )
- alias: A
- )
- )
- )
- 3: Stmt_Const(
- consts: array(
- 0: Const(
- name: A
- value: Scalar_LNumber(
- value: 42
- )
- )
- )
- )
- 4: Stmt_Class(
- flags: 0
- name: X
- extends: null
- implements: array(
- 0: Name(
- parts: array(
- 0: Y
- )
- )
- )
- stmts: array(
- 0: Stmt_TraitUse(
- traits: array(
- 0: Name(
- parts: array(
- 0: A
- )
- )
- )
- adaptations: array(
- )
- )
- 1: Stmt_TraitUse(
- traits: array(
- 0: Name(
- parts: array(
- 0: A
- )
- )
- )
- adaptations: array(
- 0: Stmt_TraitUseAdaptation_Precedence(
- trait: Name(
- parts: array(
- 0: A
- )
- )
- method: b
- insteadof: array(
- 0: Name(
- parts: array(
- 0: C
- )
- )
- )
- )
- )
- )
- 2: Stmt_ClassConst(
- flags: 0
- consts: array(
- 0: Const(
- name: A
- value: Scalar_LNumber(
- value: 42
- )
- )
- )
- )
- 3: Stmt_Property(
- flags: MODIFIER_PUBLIC (1)
- props: array(
- 0: Stmt_PropertyProperty(
- name: x
- default: null
- )
- )
- )
- )
- )
- 5: Stmt_Interface(
- name: I
- extends: array(
- 0: Name(
- parts: array(
- 0: J
- )
- )
- )
- stmts: array(
- )
- )
- 6: Stmt_Unset(
- vars: array(
- 0: Expr_Variable(
- name: x
- )
- )
- )
- 7: Expr_Isset(
- vars: array(
- 0: Expr_Variable(
- name: x
- )
- )
- )
- 8: Stmt_Declare(
- declares: array(
- 0: Stmt_DeclareDeclare(
- key: a
- value: Scalar_LNumber(
- value: 42
- )
- )
- )
- stmts: null
- )
- 9: Stmt_Function(
- byRef: false
- name: foo
- params: array(
- 0: Param(
- type: null
- byRef: false
- variadic: false
- name: a
- default: null
- )
- )
- returnType: null
- stmts: array(
- )
- )
- 10: Expr_FuncCall(
- name: Name(
- parts: array(
- 0: foo
- )
- )
- args: array(
- 0: Arg(
- value: Expr_Variable(
- name: a
- )
- byRef: false
- unpack: false
- )
- )
- )
- 11: Stmt_Global(
- vars: array(
- 0: Expr_Variable(
- name: a
- )
- )
- )
- 12: Stmt_Static(
- vars: array(
- 0: Stmt_StaticVar(
- name: a
- default: null
- )
- )
- )
- 13: Stmt_Echo(
- exprs: array(
- 0: Expr_Variable(
- name: a
- )
- )
- )
- 14: Stmt_For(
- init: array(
- 0: Expr_Variable(
- name: a
- )
- )
- cond: array(
- 0: Expr_Variable(
- name: b
- )
- )
- loop: array(
- 0: Expr_Variable(
- name: c
- )
- )
- stmts: array(
- )
- )
- 15: Expr_Closure(
- static: false
- byRef: false
- params: array(
- 0: Param(
- type: null
- byRef: false
- variadic: false
- name: a
- default: null
- )
- )
- uses: array(
- 0: Expr_ClosureUse(
- var: b
- byRef: false
- )
- )
- returnType: null
- stmts: array(
- )
- )
- )
- -----
- <?php
- foo(Bar::);
- -----
- !!php7,positions
- Syntax error, unexpected ')' from 3:10 to 3:10
- array(
- 0: Expr_FuncCall[3:1 - 3:10](
- name: Name[3:1 - 3:3](
- parts: array(
- 0: foo
- )
- )
- args: array(
- 0: Arg[3:5 - 3:9](
- value: Expr_ClassConstFetch[3:5 - 3:9](
- class: Name[3:5 - 3:7](
- parts: array(
- 0: Bar
- )
- )
- name: Expr_Error[3:10 - 3:9](
- )
- )
- byRef: false
- unpack: false
- )
- )
- )
- )
|