php-parser/internal/php5/php5_test.go

22487 lines
481 KiB
Go
Raw Normal View History

2018-02-10 22:11:56 +00:00
package php5_test
import (
"io/ioutil"
2020-05-13 17:18:53 +00:00
"testing"
2020-06-29 20:00:56 +00:00
"gotest.tools/assert"
2020-05-13 17:18:53 +00:00
"github.com/z7zmey/php-parser/internal/php5"
2020-06-29 20:00:56 +00:00
"github.com/z7zmey/php-parser/internal/scanner"
2020-05-13 17:18:53 +00:00
"github.com/z7zmey/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/ast/traverser"
"github.com/z7zmey/php-parser/pkg/ast/visitor"
2020-05-13 17:18:53 +00:00
"github.com/z7zmey/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/position"
2018-02-10 22:11:56 +00:00
)
2018-02-12 10:09:56 +00:00
func TestPhp5(t *testing.T) {
src, err := ioutil.ReadFile("test.php")
assert.NilError(t, err)
2018-02-10 22:11:56 +00:00
2020-05-13 17:18:53 +00:00
expected := &ast.Root{
Node: ast.Node{
Position: &position.Position{
StartLine: 2,
EndLine: 379,
StartPos: 3,
EndPos: 6285,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 2,
2018-06-30 21:38:31 +00:00
EndLine: 2,
StartPos: 3,
EndPos: 18,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprFunctionCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 2,
2018-06-30 21:38:31 +00:00
EndLine: 2,
StartPos: 3,
EndPos: 17,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Function: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 2,
EndLine: 2,
StartPos: 3,
EndPos: 6,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 2,
EndLine: 2,
StartPos: 3,
EndPos: 6,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 2,
EndLine: 2,
StartPos: 6,
EndPos: 17,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Arguments: []ast.Vertex{
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 2,
2018-06-30 21:38:31 +00:00
EndLine: 2,
StartPos: 7,
EndPos: 9,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 2,
2018-06-30 21:38:31 +00:00
EndLine: 2,
StartPos: 7,
EndPos: 9,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 2,
EndLine: 2,
StartPos: 7,
EndPos: 9,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 2,
2018-06-30 21:38:31 +00:00
EndLine: 2,
StartPos: 11,
EndPos: 16,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Variadic: true,
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 2,
2018-06-30 21:38:31 +00:00
EndLine: 2,
StartPos: 14,
EndPos: 16,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 2,
EndLine: 2,
StartPos: 14,
EndPos: 16,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-04-29 16:58:49 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 3,
2018-06-30 21:38:31 +00:00
EndLine: 3,
StartPos: 19,
EndPos: 35,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprFunctionCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 3,
2018-06-30 21:38:31 +00:00
EndLine: 3,
StartPos: 19,
EndPos: 34,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Function: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 3,
2018-06-30 21:38:31 +00:00
EndLine: 3,
StartPos: 19,
EndPos: 23,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 3,
2018-06-30 21:38:31 +00:00
EndLine: 3,
StartPos: 19,
EndPos: 23,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("$foo"),
2020-05-13 17:18:53 +00:00
},
},
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 3,
EndLine: 3,
StartPos: 23,
EndPos: 34,
2020-05-13 17:18:53 +00:00
},
},
Arguments: []ast.Vertex{
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 3,
2018-06-30 21:38:31 +00:00
EndLine: 3,
StartPos: 24,
EndPos: 26,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 3,
2018-06-30 21:38:31 +00:00
EndLine: 3,
StartPos: 24,
EndPos: 26,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 3,
EndLine: 3,
StartPos: 24,
EndPos: 26,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 3,
2018-06-30 21:38:31 +00:00
EndLine: 3,
StartPos: 28,
EndPos: 33,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Variadic: true,
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 3,
2018-06-30 21:38:31 +00:00
EndLine: 3,
StartPos: 31,
EndPos: 33,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 3,
EndLine: 3,
StartPos: 31,
EndPos: 33,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-04-29 16:58:49 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 4,
2018-06-30 21:38:31 +00:00
EndLine: 4,
StartPos: 36,
EndPos: 57,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprMethodCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 4,
2018-06-30 21:38:31 +00:00
EndLine: 4,
StartPos: 36,
EndPos: 56,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 4,
2018-06-30 21:38:31 +00:00
EndLine: 4,
StartPos: 36,
EndPos: 40,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 4,
2018-06-30 21:38:31 +00:00
EndLine: 4,
StartPos: 36,
EndPos: 40,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("$foo"),
2020-05-13 17:18:53 +00:00
},
},
Method: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 4,
EndLine: 4,
StartPos: 42,
EndPos: 45,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("bar"),
},
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 4,
EndLine: 4,
StartPos: 45,
EndPos: 56,
2020-05-13 17:18:53 +00:00
},
},
Arguments: []ast.Vertex{
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 4,
2018-06-30 21:38:31 +00:00
EndLine: 4,
StartPos: 46,
EndPos: 48,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 4,
2018-06-30 21:38:31 +00:00
EndLine: 4,
StartPos: 46,
EndPos: 48,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 4,
EndLine: 4,
StartPos: 46,
EndPos: 48,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 4,
2018-06-30 21:38:31 +00:00
EndLine: 4,
StartPos: 50,
EndPos: 55,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Variadic: true,
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 4,
2018-06-30 21:38:31 +00:00
EndLine: 4,
StartPos: 53,
EndPos: 55,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 4,
EndLine: 4,
StartPos: 53,
EndPos: 55,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-04-29 16:58:49 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 5,
2018-06-30 21:38:31 +00:00
EndLine: 5,
StartPos: 58,
EndPos: 78,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprStaticCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 5,
2018-06-30 21:38:31 +00:00
EndLine: 5,
StartPos: 58,
EndPos: 77,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 5,
EndLine: 5,
StartPos: 58,
EndPos: 61,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 5,
EndLine: 5,
StartPos: 58,
EndPos: 61,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Call: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 5,
EndLine: 5,
StartPos: 63,
EndPos: 66,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 5,
EndLine: 5,
StartPos: 66,
EndPos: 77,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Arguments: []ast.Vertex{
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 5,
2018-06-30 21:38:31 +00:00
EndLine: 5,
StartPos: 67,
EndPos: 69,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 5,
2018-06-30 21:38:31 +00:00
EndLine: 5,
StartPos: 67,
EndPos: 69,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 5,
EndLine: 5,
StartPos: 67,
EndPos: 69,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 5,
2018-06-30 21:38:31 +00:00
EndLine: 5,
StartPos: 71,
EndPos: 76,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Variadic: true,
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 5,
2018-06-30 21:38:31 +00:00
EndLine: 5,
StartPos: 74,
EndPos: 76,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 5,
EndLine: 5,
StartPos: 74,
EndPos: 76,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-04-29 16:58:49 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 6,
2018-06-30 21:38:31 +00:00
EndLine: 6,
StartPos: 79,
EndPos: 100,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprStaticCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 6,
2018-06-30 21:38:31 +00:00
EndLine: 6,
StartPos: 79,
EndPos: 99,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 6,
2018-06-30 21:38:31 +00:00
EndLine: 6,
StartPos: 79,
EndPos: 83,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 6,
2018-06-30 21:38:31 +00:00
EndLine: 6,
StartPos: 79,
EndPos: 83,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("$foo"),
2020-05-13 17:18:53 +00:00
},
},
Call: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 6,
EndLine: 6,
StartPos: 85,
EndPos: 88,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("bar"),
},
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 6,
EndLine: 6,
StartPos: 88,
EndPos: 99,
2020-05-13 17:18:53 +00:00
},
},
Arguments: []ast.Vertex{
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 6,
2018-06-30 21:38:31 +00:00
EndLine: 6,
StartPos: 89,
EndPos: 91,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 6,
2018-06-30 21:38:31 +00:00
EndLine: 6,
StartPos: 89,
EndPos: 91,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 6,
EndLine: 6,
StartPos: 89,
EndPos: 91,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 6,
2018-06-30 21:38:31 +00:00
EndLine: 6,
StartPos: 93,
EndPos: 98,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Variadic: true,
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 6,
2018-06-30 21:38:31 +00:00
EndLine: 6,
StartPos: 96,
EndPos: 98,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 6,
EndLine: 6,
StartPos: 96,
EndPos: 98,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-04-29 16:58:49 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 7,
2018-06-30 21:38:31 +00:00
EndLine: 7,
StartPos: 101,
EndPos: 120,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprNew{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 7,
2018-06-30 21:38:31 +00:00
EndLine: 7,
StartPos: 101,
EndPos: 119,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 7,
EndLine: 7,
StartPos: 105,
EndPos: 108,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 7,
EndLine: 7,
StartPos: 105,
EndPos: 108,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
},
},
},
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 7,
EndLine: 7,
StartPos: 108,
EndPos: 119,
2020-05-13 17:18:53 +00:00
},
},
Arguments: []ast.Vertex{
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 7,
2018-06-30 21:38:31 +00:00
EndLine: 7,
StartPos: 109,
EndPos: 111,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 7,
2018-06-30 21:38:31 +00:00
EndLine: 7,
StartPos: 109,
EndPos: 111,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 7,
EndLine: 7,
StartPos: 109,
EndPos: 111,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 7,
2018-06-30 21:38:31 +00:00
EndLine: 7,
StartPos: 113,
EndPos: 118,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Variadic: true,
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 7,
2018-06-30 21:38:31 +00:00
EndLine: 7,
StartPos: 116,
EndPos: 118,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 7,
EndLine: 7,
StartPos: 116,
EndPos: 118,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-04-29 16:58:49 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtFunction{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 9,
2018-06-30 21:38:31 +00:00
EndLine: 9,
StartPos: 122,
EndPos: 166,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
FunctionName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 9,
2018-06-30 21:38:31 +00:00
EndLine: 9,
StartPos: 131,
EndPos: 134,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("foo"),
},
Params: []ast.Vertex{
&ast.Parameter{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 9,
2018-06-30 21:38:31 +00:00
EndLine: 9,
StartPos: 135,
EndPos: 148,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Type: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 9,
EndLine: 9,
StartPos: 135,
EndPos: 138,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 9,
EndLine: 9,
StartPos: 135,
EndPos: 138,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 9,
2018-06-30 21:38:31 +00:00
EndLine: 9,
StartPos: 139,
EndPos: 143,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 9,
EndLine: 9,
StartPos: 139,
EndPos: 143,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$bar"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
DefaultValue: &ast.ExprConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 9,
2018-06-30 21:38:31 +00:00
EndLine: 9,
StartPos: 144,
EndPos: 148,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Const: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 9,
EndLine: 9,
StartPos: 144,
EndPos: 148,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 9,
EndLine: 9,
StartPos: 144,
EndPos: 148,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("null"),
2018-06-24 07:19:44 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.Parameter{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 9,
2018-06-30 21:38:31 +00:00
EndLine: 9,
StartPos: 150,
EndPos: 162,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Type: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 9,
EndLine: 9,
StartPos: 150,
EndPos: 153,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 9,
EndLine: 9,
StartPos: 150,
EndPos: 153,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("baz"),
2018-06-24 07:19:44 +00:00
},
},
},
Var: &ast.Reference{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 9,
2018-06-30 21:38:31 +00:00
EndLine: 9,
StartPos: 154,
EndPos: 162,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.Variadic{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 9,
EndLine: 9,
StartPos: 155,
EndPos: 162,
},
},
Var: &ast.ExprVariable{
Node: ast.Node{
Position: &position.Position{
StartLine: 9,
EndLine: 9,
StartPos: 158,
EndPos: 162,
},
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 9,
EndLine: 9,
StartPos: 158,
EndPos: 162,
},
},
Value: []byte("$baz"),
2020-05-13 17:18:53 +00:00
},
},
2018-06-24 07:19:44 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 10,
2018-06-30 21:38:31 +00:00
EndLine: 10,
StartPos: 167,
EndPos: 230,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 10,
2018-06-30 21:38:31 +00:00
EndLine: 10,
StartPos: 173,
EndPos: 176,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("foo"),
},
Stmts: []ast.Vertex{
&ast.StmtClassMethod{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 10,
2018-06-30 21:38:31 +00:00
EndLine: 10,
StartPos: 178,
EndPos: 229,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
MethodName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 10,
2018-06-30 21:38:31 +00:00
EndLine: 10,
StartPos: 194,
EndPos: 197,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Modifiers: []ast.Vertex{
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 10,
EndLine: 10,
StartPos: 178,
EndPos: 184,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("public"),
},
},
Params: []ast.Vertex{
&ast.Parameter{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 10,
2018-06-30 21:38:31 +00:00
EndLine: 10,
StartPos: 198,
EndPos: 211,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Type: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 10,
EndLine: 10,
StartPos: 198,
EndPos: 201,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 10,
EndLine: 10,
StartPos: 198,
EndPos: 201,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 10,
2018-06-30 21:38:31 +00:00
EndLine: 10,
StartPos: 202,
EndPos: 206,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 10,
EndLine: 10,
StartPos: 202,
EndPos: 206,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$bar"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
DefaultValue: &ast.ExprConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 10,
2018-06-30 21:38:31 +00:00
EndLine: 10,
StartPos: 207,
EndPos: 211,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Const: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 10,
EndLine: 10,
StartPos: 207,
EndPos: 211,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 10,
EndLine: 10,
StartPos: 207,
EndPos: 211,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("null"),
2018-06-24 07:19:44 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.Parameter{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 10,
2018-06-30 21:38:31 +00:00
EndLine: 10,
StartPos: 213,
EndPos: 225,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Type: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 10,
EndLine: 10,
StartPos: 213,
EndPos: 216,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 10,
EndLine: 10,
StartPos: 213,
EndPos: 216,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("baz"),
2018-06-24 07:19:44 +00:00
},
},
},
Var: &ast.Reference{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 10,
2018-06-30 21:38:31 +00:00
EndLine: 10,
StartPos: 217,
EndPos: 225,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.Variadic{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 10,
EndLine: 10,
StartPos: 218,
EndPos: 225,
},
},
Var: &ast.ExprVariable{
Node: ast.Node{
Position: &position.Position{
StartLine: 10,
EndLine: 10,
StartPos: 221,
EndPos: 225,
},
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 10,
EndLine: 10,
StartPos: 221,
EndPos: 225,
},
},
Value: []byte("$baz"),
2020-05-13 17:18:53 +00:00
},
},
2018-06-24 07:19:44 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 10,
EndLine: 10,
StartPos: 227,
EndPos: 229,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-03 06:35:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 11,
2018-06-30 21:38:31 +00:00
EndLine: 11,
StartPos: 231,
EndPos: 272,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprClosure{
Node: ast.Node{
Position: &position.Position{
StartLine: 11,
EndLine: 11,
StartPos: 231,
EndPos: 271,
2020-05-13 17:18:53 +00:00
},
},
Params: []ast.Vertex{
&ast.Parameter{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 11,
2018-06-30 21:38:31 +00:00
EndLine: 11,
StartPos: 240,
EndPos: 253,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Type: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 11,
EndLine: 11,
StartPos: 240,
EndPos: 243,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 11,
EndLine: 11,
StartPos: 240,
EndPos: 243,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 11,
2018-06-30 21:38:31 +00:00
EndLine: 11,
StartPos: 244,
EndPos: 248,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 11,
EndLine: 11,
StartPos: 244,
EndPos: 248,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$bar"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
DefaultValue: &ast.ExprConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 11,
2018-06-30 21:38:31 +00:00
EndLine: 11,
StartPos: 249,
EndPos: 253,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Const: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 11,
EndLine: 11,
StartPos: 249,
EndPos: 253,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 11,
EndLine: 11,
StartPos: 249,
EndPos: 253,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("null"),
2018-06-24 07:19:44 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.Parameter{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 11,
2018-06-30 21:38:31 +00:00
EndLine: 11,
StartPos: 255,
EndPos: 267,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Type: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 11,
EndLine: 11,
StartPos: 255,
EndPos: 258,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 11,
EndLine: 11,
StartPos: 255,
EndPos: 258,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("baz"),
2018-06-24 07:19:44 +00:00
},
},
},
Var: &ast.Reference{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 11,
2018-06-30 21:38:31 +00:00
EndLine: 11,
StartPos: 259,
EndPos: 267,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.Variadic{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 11,
EndLine: 11,
StartPos: 260,
EndPos: 267,
},
},
Var: &ast.ExprVariable{
Node: ast.Node{
Position: &position.Position{
StartLine: 11,
EndLine: 11,
StartPos: 263,
EndPos: 267,
},
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 11,
EndLine: 11,
StartPos: 263,
EndPos: 267,
},
},
Value: []byte("$baz"),
2020-05-13 17:18:53 +00:00
},
},
2018-06-24 07:19:44 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 12,
2018-06-30 21:38:31 +00:00
EndLine: 12,
StartPos: 273,
EndPos: 321,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprClosure{
Node: ast.Node{
Position: &position.Position{
StartLine: 12,
EndLine: 12,
StartPos: 273,
EndPos: 320,
2020-05-13 17:18:53 +00:00
},
},
Static: true,
2020-05-13 17:18:53 +00:00
Params: []ast.Vertex{
&ast.Parameter{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 12,
2018-06-30 21:38:31 +00:00
EndLine: 12,
StartPos: 289,
EndPos: 302,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Type: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 12,
EndLine: 12,
StartPos: 289,
EndPos: 292,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 12,
EndLine: 12,
StartPos: 289,
EndPos: 292,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 12,
2018-06-30 21:38:31 +00:00
EndLine: 12,
StartPos: 293,
EndPos: 297,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 12,
EndLine: 12,
StartPos: 293,
EndPos: 297,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$bar"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
DefaultValue: &ast.ExprConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 12,
2018-06-30 21:38:31 +00:00
EndLine: 12,
StartPos: 298,
EndPos: 302,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Const: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 12,
EndLine: 12,
StartPos: 298,
EndPos: 302,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 12,
EndLine: 12,
StartPos: 298,
EndPos: 302,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("null"),
2018-06-24 07:19:44 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.Parameter{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 12,
2018-06-30 21:38:31 +00:00
EndLine: 12,
StartPos: 304,
EndPos: 316,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Type: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 12,
EndLine: 12,
StartPos: 304,
EndPos: 307,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 12,
EndLine: 12,
StartPos: 304,
EndPos: 307,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("baz"),
2018-06-24 07:19:44 +00:00
},
},
},
Var: &ast.Reference{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 12,
2018-06-30 21:38:31 +00:00
EndLine: 12,
StartPos: 308,
EndPos: 316,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.Variadic{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 12,
EndLine: 12,
StartPos: 309,
EndPos: 316,
},
},
Var: &ast.ExprVariable{
Node: ast.Node{
Position: &position.Position{
StartLine: 12,
EndLine: 12,
StartPos: 312,
EndPos: 316,
},
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 12,
EndLine: 12,
StartPos: 312,
EndPos: 316,
},
},
Value: []byte("$baz"),
2020-05-13 17:18:53 +00:00
},
},
2018-06-24 07:19:44 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 14,
2018-06-30 21:38:31 +00:00
EndLine: 14,
StartPos: 323,
EndPos: 343,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 14,
EndLine: 14,
StartPos: 323,
EndPos: 342,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1234567890123456789"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 15,
2018-06-30 21:38:31 +00:00
EndLine: 15,
StartPos: 344,
EndPos: 365,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarDnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 15,
EndLine: 15,
StartPos: 344,
EndPos: 364,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("12345678901234567890"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 16,
2018-06-30 21:38:31 +00:00
EndLine: 16,
StartPos: 366,
EndPos: 369,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarDnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 16,
EndLine: 16,
StartPos: 366,
EndPos: 368,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("0."),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 17,
2018-06-30 21:38:31 +00:00
EndLine: 17,
StartPos: 370,
EndPos: 437,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 17,
EndLine: 17,
StartPos: 370,
EndPos: 436,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("0b0111111111111111111111111111111111111111111111111111111111111111"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 18,
2018-06-30 21:38:31 +00:00
EndLine: 18,
StartPos: 438,
EndPos: 505,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarDnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 18,
EndLine: 18,
StartPos: 438,
EndPos: 504,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("0b1111111111111111111111111111111111111111111111111111111111111111"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 19,
2018-06-30 21:38:31 +00:00
EndLine: 19,
StartPos: 506,
EndPos: 527,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 19,
EndLine: 19,
StartPos: 506,
EndPos: 526,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("0x007111111111111111"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 20,
2018-06-30 21:38:31 +00:00
EndLine: 20,
StartPos: 528,
EndPos: 547,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarDnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 20,
EndLine: 20,
StartPos: 528,
EndPos: 546,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("0x8111111111111111"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 21,
2018-06-30 21:38:31 +00:00
EndLine: 21,
StartPos: 548,
EndPos: 558,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarMagicConstant{
Node: ast.Node{
Position: &position.Position{
StartLine: 21,
EndLine: 21,
StartPos: 548,
EndPos: 557,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("__CLASS__"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 22,
2018-06-30 21:38:31 +00:00
EndLine: 22,
StartPos: 559,
EndPos: 567,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarMagicConstant{
Node: ast.Node{
Position: &position.Position{
StartLine: 22,
EndLine: 22,
StartPos: 559,
EndPos: 566,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("__DIR__"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 23,
2018-06-30 21:38:31 +00:00
EndLine: 23,
StartPos: 568,
EndPos: 577,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarMagicConstant{
Node: ast.Node{
Position: &position.Position{
StartLine: 23,
EndLine: 23,
StartPos: 568,
EndPos: 576,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("__FILE__"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 24,
2018-06-30 21:38:31 +00:00
EndLine: 24,
StartPos: 578,
EndPos: 591,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarMagicConstant{
Node: ast.Node{
Position: &position.Position{
StartLine: 24,
EndLine: 24,
StartPos: 578,
EndPos: 590,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("__FUNCTION__"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 25,
2018-06-30 21:38:31 +00:00
EndLine: 25,
StartPos: 592,
EndPos: 601,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarMagicConstant{
Node: ast.Node{
Position: &position.Position{
StartLine: 25,
EndLine: 25,
StartPos: 592,
EndPos: 600,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("__LINE__"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 26,
2018-06-30 21:38:31 +00:00
EndLine: 26,
StartPos: 602,
EndPos: 616,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarMagicConstant{
Node: ast.Node{
Position: &position.Position{
StartLine: 26,
EndLine: 26,
StartPos: 602,
EndPos: 615,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("__NAMESPACE__"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 27,
2018-06-30 21:38:31 +00:00
EndLine: 27,
StartPos: 617,
EndPos: 628,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarMagicConstant{
Node: ast.Node{
Position: &position.Position{
StartLine: 27,
EndLine: 27,
StartPos: 617,
EndPos: 627,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("__METHOD__"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 28,
2018-06-30 21:38:31 +00:00
EndLine: 28,
StartPos: 629,
EndPos: 639,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarMagicConstant{
Node: ast.Node{
Position: &position.Position{
StartLine: 28,
EndLine: 28,
StartPos: 629,
EndPos: 638,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("__TRAIT__"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 30,
2018-06-30 21:38:31 +00:00
EndLine: 30,
StartPos: 641,
EndPos: 653,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarEncapsed{
Node: ast.Node{
Position: &position.Position{
StartLine: 30,
EndLine: 30,
StartPos: 641,
EndPos: 652,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 30,
EndLine: 30,
StartPos: 642,
EndPos: 647,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("test "),
},
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 30,
2018-06-30 21:38:31 +00:00
EndLine: 30,
StartPos: 647,
EndPos: 651,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 30,
EndLine: 30,
StartPos: 647,
EndPos: 651,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$var"),
2018-06-24 07:19:44 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 31,
2018-06-30 21:38:31 +00:00
EndLine: 31,
StartPos: 654,
EndPos: 669,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarEncapsed{
Node: ast.Node{
Position: &position.Position{
StartLine: 31,
EndLine: 31,
StartPos: 654,
EndPos: 668,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 31,
EndLine: 31,
StartPos: 655,
EndPos: 660,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("test "),
},
&ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 31,
2018-06-30 21:38:31 +00:00
EndLine: 31,
StartPos: 660,
EndPos: 667,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 31,
2018-06-30 21:38:31 +00:00
EndLine: 31,
StartPos: 660,
EndPos: 664,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 31,
EndLine: 31,
StartPos: 660,
EndPos: 664,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$var"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Dim: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 31,
EndLine: 31,
StartPos: 665,
EndPos: 666,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
},
},
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 32,
2018-06-30 21:38:31 +00:00
EndLine: 32,
StartPos: 670,
EndPos: 724,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarEncapsed{
Node: ast.Node{
Position: &position.Position{
StartLine: 32,
EndLine: 32,
StartPos: 670,
EndPos: 723,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 32,
EndLine: 32,
StartPos: 671,
EndPos: 676,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("test "),
},
&ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 32,
2018-06-30 21:38:31 +00:00
EndLine: 32,
StartPos: 676,
EndPos: 722,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 32,
2018-06-30 21:38:31 +00:00
EndLine: 32,
StartPos: 676,
EndPos: 680,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 32,
EndLine: 32,
StartPos: 676,
EndPos: 680,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$var"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Dim: &ast.ScalarString{
Node: ast.Node{
Position: &position.Position{
StartLine: 32,
EndLine: 32,
StartPos: 681,
EndPos: 721,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1234567890123456789012345678901234567890"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 33,
2018-06-30 21:38:31 +00:00
EndLine: 33,
StartPos: 725,
EndPos: 742,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarEncapsed{
Node: ast.Node{
Position: &position.Position{
StartLine: 33,
EndLine: 33,
StartPos: 725,
EndPos: 741,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 33,
EndLine: 33,
StartPos: 726,
EndPos: 731,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("test "),
},
&ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 33,
2018-06-30 21:38:31 +00:00
EndLine: 33,
StartPos: 731,
EndPos: 740,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 33,
2018-06-30 21:38:31 +00:00
EndLine: 33,
StartPos: 731,
EndPos: 735,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 33,
EndLine: 33,
StartPos: 731,
EndPos: 735,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$var"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Dim: &ast.ScalarString{
Node: ast.Node{
Position: &position.Position{
StartLine: 33,
EndLine: 33,
StartPos: 736,
EndPos: 739,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 19:02:57 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 34,
2018-06-30 21:38:31 +00:00
EndLine: 34,
StartPos: 743,
EndPos: 761,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarEncapsed{
Node: ast.Node{
Position: &position.Position{
StartLine: 34,
EndLine: 34,
StartPos: 743,
EndPos: 760,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 34,
EndLine: 34,
StartPos: 744,
EndPos: 749,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("test "),
},
&ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 34,
2018-06-30 21:38:31 +00:00
EndLine: 34,
StartPos: 749,
EndPos: 759,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 34,
2018-06-30 21:38:31 +00:00
EndLine: 34,
StartPos: 749,
EndPos: 753,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 34,
EndLine: 34,
StartPos: 749,
EndPos: 753,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$var"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Dim: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 34,
2018-06-30 21:38:31 +00:00
EndLine: 34,
StartPos: 754,
EndPos: 758,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 34,
EndLine: 34,
StartPos: 754,
EndPos: 758,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$bar"),
2018-06-24 07:19:44 +00:00
},
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 35,
2018-06-30 21:38:31 +00:00
EndLine: 35,
StartPos: 762,
EndPos: 774,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarEncapsed{
Node: ast.Node{
Position: &position.Position{
StartLine: 35,
EndLine: 35,
StartPos: 762,
EndPos: 773,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 35,
2018-06-30 21:38:31 +00:00
EndLine: 35,
StartPos: 763,
EndPos: 767,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 35,
EndLine: 35,
StartPos: 763,
EndPos: 767,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$foo"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 35,
EndLine: 35,
StartPos: 767,
EndPos: 768,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte(" "),
},
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 35,
2018-06-30 21:38:31 +00:00
EndLine: 35,
StartPos: 768,
EndPos: 772,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 35,
EndLine: 35,
StartPos: 768,
EndPos: 772,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$bar"),
2018-06-24 07:19:44 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 36,
2018-06-30 21:38:31 +00:00
EndLine: 36,
StartPos: 775,
EndPos: 794,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarEncapsed{
Node: ast.Node{
Position: &position.Position{
StartLine: 36,
EndLine: 36,
StartPos: 775,
EndPos: 793,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 36,
EndLine: 36,
StartPos: 776,
EndPos: 781,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("test "),
},
&ast.ExprPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 36,
2018-06-30 21:38:31 +00:00
EndLine: 36,
StartPos: 781,
EndPos: 790,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 36,
2018-06-30 21:38:31 +00:00
EndLine: 36,
StartPos: 781,
EndPos: 785,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 36,
EndLine: 36,
StartPos: 781,
EndPos: 785,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$foo"),
2020-05-13 17:18:53 +00:00
},
},
Property: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 36,
EndLine: 36,
StartPos: 787,
EndPos: 790,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 36,
2018-06-30 21:38:31 +00:00
EndLine: 36,
StartPos: 790,
EndPos: 792,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("()"),
2018-06-24 07:19:44 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 37,
2018-06-30 21:38:31 +00:00
EndLine: 37,
StartPos: 795,
EndPos: 809,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarEncapsed{
Node: ast.Node{
Position: &position.Position{
StartLine: 37,
EndLine: 37,
StartPos: 795,
EndPos: 808,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 37,
EndLine: 37,
StartPos: 796,
EndPos: 801,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("test "),
},
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 37,
2018-06-30 21:38:31 +00:00
EndLine: 37,
StartPos: 801,
EndPos: 807,
2020-05-13 17:18:53 +00:00
},
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 37,
EndLine: 37,
StartPos: 803,
EndPos: 806,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 38,
2018-06-30 21:38:31 +00:00
EndLine: 38,
StartPos: 810,
EndPos: 827,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarEncapsed{
Node: ast.Node{
Position: &position.Position{
StartLine: 38,
EndLine: 38,
StartPos: 810,
EndPos: 826,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 38,
EndLine: 38,
StartPos: 811,
EndPos: 816,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("test "),
},
&ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 38,
2018-06-30 21:38:31 +00:00
EndLine: 38,
StartPos: 816,
EndPos: 825,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 38,
2018-06-30 21:38:31 +00:00
EndLine: 38,
StartPos: 818,
EndPos: 821,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 38,
EndLine: 38,
StartPos: 818,
EndPos: 821,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Dim: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 38,
EndLine: 38,
StartPos: 822,
EndPos: 823,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-06-24 07:19:44 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 39,
2018-06-30 21:38:31 +00:00
EndLine: 39,
StartPos: 828,
EndPos: 849,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarEncapsed{
Node: ast.Node{
Position: &position.Position{
StartLine: 39,
EndLine: 39,
StartPos: 828,
EndPos: 848,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 39,
EndLine: 39,
StartPos: 829,
EndPos: 834,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("test "),
},
&ast.ExprMethodCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 39,
2018-06-30 21:38:31 +00:00
EndLine: 39,
StartPos: 835,
EndPos: 846,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 39,
2018-06-30 21:38:31 +00:00
EndLine: 39,
StartPos: 835,
EndPos: 839,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 39,
EndLine: 39,
StartPos: 835,
EndPos: 839,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$foo"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Method: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 39,
EndLine: 39,
StartPos: 841,
EndPos: 844,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 39,
EndLine: 39,
StartPos: 844,
EndPos: 846,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtAltIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 41,
2020-05-13 17:18:53 +00:00
EndLine: 42,
StartPos: 851,
EndPos: 867,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 41,
2018-06-30 21:38:31 +00:00
EndLine: 41,
StartPos: 855,
EndPos: 857,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 41,
EndLine: 41,
StartPos: 855,
EndPos: 857,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: -1,
EndLine: -1,
StartPos: -1,
EndPos: -1,
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtAltIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 43,
2020-05-13 17:18:53 +00:00
EndLine: 45,
StartPos: 868,
EndPos: 897,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 43,
2018-06-30 21:38:31 +00:00
EndLine: 43,
StartPos: 872,
EndPos: 874,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 43,
EndLine: 43,
StartPos: 872,
EndPos: 874,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2020-05-13 17:18:53 +00:00
StartLine: -1,
2018-06-30 21:38:31 +00:00
EndLine: -1,
2020-05-13 17:18:53 +00:00
StartPos: -1,
2018-06-30 21:38:31 +00:00
EndPos: -1,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Stmts: []ast.Vertex{},
},
ElseIf: []ast.Vertex{
&ast.StmtAltElseIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 44,
2020-05-13 17:18:53 +00:00
EndLine: -1,
StartPos: 878,
2020-05-13 17:18:53 +00:00
EndPos: -1,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 44,
2018-06-30 21:38:31 +00:00
EndLine: 44,
StartPos: 886,
EndPos: 888,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 44,
EndLine: 44,
StartPos: 886,
EndPos: 888,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: -1,
EndLine: -1,
StartPos: -1,
EndPos: -1,
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtAltIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 46,
2020-05-13 17:18:53 +00:00
EndLine: 48,
StartPos: 898,
EndPos: 920,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 46,
2018-06-30 21:38:31 +00:00
EndLine: 46,
StartPos: 902,
EndPos: 904,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 46,
EndLine: 46,
StartPos: 902,
EndPos: 904,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: -1,
2018-06-30 21:38:31 +00:00
EndLine: -1,
StartPos: -1,
EndPos: -1,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Else: &ast.StmtAltElse{
Node: ast.Node{
Position: &position.Position{
StartLine: 47,
EndLine: -1,
StartPos: 908,
2020-05-13 17:18:53 +00:00
EndPos: -1,
},
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: -1,
EndLine: -1,
StartPos: -1,
EndPos: -1,
},
},
Stmts: []ast.Vertex{},
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtAltIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 49,
2020-05-13 17:18:53 +00:00
EndLine: 53,
StartPos: 921,
EndPos: 969,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 49,
2018-06-30 21:38:31 +00:00
EndLine: 49,
StartPos: 925,
EndPos: 927,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 49,
EndLine: 49,
StartPos: 925,
EndPos: 927,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2020-05-13 17:18:53 +00:00
StartLine: -1,
2018-06-30 21:38:31 +00:00
EndLine: -1,
2020-05-13 17:18:53 +00:00
StartPos: -1,
2018-06-30 21:38:31 +00:00
EndPos: -1,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Stmts: []ast.Vertex{},
},
ElseIf: []ast.Vertex{
&ast.StmtAltElseIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 50,
2020-05-13 17:18:53 +00:00
EndLine: -1,
StartPos: 931,
2020-05-13 17:18:53 +00:00
EndPos: -1,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 50,
2018-06-30 21:38:31 +00:00
EndLine: 50,
StartPos: 939,
EndPos: 941,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 50,
EndLine: 50,
StartPos: 939,
EndPos: 941,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: -1,
EndLine: -1,
StartPos: -1,
EndPos: -1,
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtAltElseIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 51,
2020-05-13 17:18:53 +00:00
EndLine: -1,
StartPos: 944,
2020-05-13 17:18:53 +00:00
EndPos: -1,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 51,
2018-06-30 21:38:31 +00:00
EndLine: 51,
StartPos: 952,
EndPos: 954,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 51,
EndLine: 51,
StartPos: 952,
EndPos: 954,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$c"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: -1,
EndLine: -1,
StartPos: -1,
EndPos: -1,
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Else: &ast.StmtAltElse{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2020-05-13 17:18:53 +00:00
StartLine: 52,
2018-06-30 21:38:31 +00:00
EndLine: -1,
StartPos: 957,
2018-06-30 21:38:31 +00:00
EndPos: -1,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: -1,
EndLine: -1,
StartPos: -1,
EndPos: -1,
},
},
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtWhile{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 55,
2018-06-30 21:38:31 +00:00
EndLine: 55,
StartPos: 971,
EndPos: 991,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 55,
EndLine: 55,
StartPos: 978,
EndPos: 979,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 55,
EndLine: 55,
StartPos: 981,
EndPos: 991,
2020-05-13 17:18:53 +00:00
},
},
Stmts: []ast.Vertex{
&ast.StmtBreak{
Node: ast.Node{
Position: &position.Position{
StartLine: 55,
EndLine: 55,
StartPos: 983,
EndPos: 989,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtWhile{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 56,
2018-06-30 21:38:31 +00:00
EndLine: 56,
StartPos: 992,
EndPos: 1014,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 56,
EndLine: 56,
StartPos: 999,
EndPos: 1000,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 56,
EndLine: 56,
StartPos: 1002,
EndPos: 1014,
2020-05-13 17:18:53 +00:00
},
},
Stmts: []ast.Vertex{
&ast.StmtBreak{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 56,
2018-06-30 21:38:31 +00:00
EndLine: 56,
StartPos: 1004,
EndPos: 1012,
2020-05-13 17:18:53 +00:00
},
},
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 56,
EndLine: 56,
StartPos: 1010,
EndPos: 1011,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtAltWhile{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 57,
2018-06-30 21:38:31 +00:00
EndLine: 57,
StartPos: 1015,
EndPos: 1046,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 57,
EndLine: 57,
StartPos: 1022,
EndPos: 1023,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 57,
EndLine: 57,
StartPos: 1027,
EndPos: 1036,
2020-05-13 17:18:53 +00:00
},
},
Stmts: []ast.Vertex{
&ast.StmtBreak{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 57,
2018-06-30 21:38:31 +00:00
EndLine: 57,
StartPos: 1027,
EndPos: 1036,
2020-05-13 17:18:53 +00:00
},
},
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 57,
EndLine: 57,
StartPos: 1033,
EndPos: 1034,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("3"),
2018-06-24 07:19:44 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 58,
2018-06-30 21:38:31 +00:00
EndLine: 58,
StartPos: 1047,
EndPos: 1083,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 58,
2018-06-30 21:38:31 +00:00
EndLine: 58,
StartPos: 1053,
EndPos: 1056,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("foo"),
},
Stmts: []ast.Vertex{
&ast.StmtClassConstList{
Node: ast.Node{
Position: &position.Position{
StartLine: 58,
EndLine: 58,
StartPos: 1058,
EndPos: 1081,
2020-05-13 17:18:53 +00:00
},
},
Consts: []ast.Vertex{
&ast.StmtConstant{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 58,
2018-06-30 21:38:31 +00:00
EndLine: 58,
StartPos: 1064,
EndPos: 1071,
2018-06-24 07:19:44 +00:00
},
},
Name: &ast.Identifier{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 58,
EndLine: 58,
StartPos: 1064,
EndPos: 1067,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("FOO"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 58,
EndLine: 58,
StartPos: 1070,
EndPos: 1071,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtConstant{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 58,
2018-06-30 21:38:31 +00:00
EndLine: 58,
StartPos: 1073,
EndPos: 1080,
2018-06-24 07:19:44 +00:00
},
},
Name: &ast.Identifier{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 58,
EndLine: 58,
StartPos: 1073,
EndPos: 1076,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("BAR"),
},
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 58,
EndLine: 58,
StartPos: 1079,
EndPos: 1080,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 59,
2018-06-30 21:38:31 +00:00
EndLine: 59,
StartPos: 1084,
EndPos: 1114,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 59,
2018-06-30 21:38:31 +00:00
EndLine: 59,
StartPos: 1090,
EndPos: 1093,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("foo"),
},
Stmts: []ast.Vertex{
&ast.StmtClassMethod{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 59,
2018-06-30 21:38:31 +00:00
EndLine: 59,
StartPos: 1095,
EndPos: 1112,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
MethodName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 59,
EndLine: 59,
StartPos: 1104,
EndPos: 1107,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("bar"),
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 59,
EndLine: 59,
StartPos: 1110,
EndPos: 1112,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 60,
2018-06-30 21:38:31 +00:00
EndLine: 60,
StartPos: 1115,
EndPos: 1160,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 60,
2018-06-30 21:38:31 +00:00
EndLine: 60,
StartPos: 1121,
EndPos: 1124,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("foo"),
},
Stmts: []ast.Vertex{
&ast.StmtClassMethod{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 60,
2018-06-30 21:38:31 +00:00
EndLine: 60,
StartPos: 1126,
EndPos: 1158,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ReturnsRef: true,
MethodName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 60,
2018-06-30 21:38:31 +00:00
EndLine: 60,
StartPos: 1150,
EndPos: 1153,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("bar"),
},
Modifiers: []ast.Vertex{
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 60,
EndLine: 60,
StartPos: 1126,
EndPos: 1132,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("public"),
},
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 60,
EndLine: 60,
StartPos: 1133,
EndPos: 1139,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("static"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 60,
2018-06-30 21:38:31 +00:00
EndLine: 60,
StartPos: 1156,
EndPos: 1158,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 61,
2018-06-30 21:38:31 +00:00
EndLine: 61,
StartPos: 1161,
EndPos: 1233,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 61,
2018-06-30 21:38:31 +00:00
EndLine: 61,
StartPos: 1167,
EndPos: 1170,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("foo"),
},
Stmts: []ast.Vertex{
&ast.StmtClassMethod{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 61,
2018-06-30 21:38:31 +00:00
EndLine: 61,
StartPos: 1172,
EndPos: 1203,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
MethodName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 61,
2018-06-30 21:38:31 +00:00
EndLine: 61,
StartPos: 1195,
EndPos: 1198,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("bar"),
},
Modifiers: []ast.Vertex{
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 61,
EndLine: 61,
StartPos: 1172,
EndPos: 1177,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("final"),
},
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 61,
EndLine: 61,
StartPos: 1178,
EndPos: 1185,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("private"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 61,
2018-06-30 21:38:31 +00:00
EndLine: 61,
StartPos: 1201,
EndPos: 1203,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtClassMethod{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 61,
2018-06-30 21:38:31 +00:00
EndLine: 61,
StartPos: 1204,
EndPos: 1231,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
MethodName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 61,
2018-06-30 21:38:31 +00:00
EndLine: 61,
StartPos: 1223,
EndPos: 1226,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("baz"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Modifiers: []ast.Vertex{
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 61,
EndLine: 61,
StartPos: 1204,
EndPos: 1213,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("protected"),
},
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 61,
EndLine: 61,
StartPos: 1229,
EndPos: 1231,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 62,
2018-06-30 21:38:31 +00:00
EndLine: 62,
StartPos: 1234,
EndPos: 1287,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 62,
2018-06-30 21:38:31 +00:00
EndLine: 62,
StartPos: 1249,
EndPos: 1252,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Modifiers: []ast.Vertex{
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 62,
EndLine: 62,
StartPos: 1234,
EndPos: 1242,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("abstract"),
},
},
Stmts: []ast.Vertex{
&ast.StmtClassMethod{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 62,
2018-06-30 21:38:31 +00:00
EndLine: 62,
StartPos: 1254,
EndPos: 1285,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
MethodName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 62,
2018-06-30 21:38:31 +00:00
EndLine: 62,
StartPos: 1279,
EndPos: 1282,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("bar"),
},
Modifiers: []ast.Vertex{
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 62,
EndLine: 62,
StartPos: 1254,
EndPos: 1262,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("abstract"),
},
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 62,
EndLine: 62,
StartPos: 1263,
EndPos: 1269,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("public"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Stmt: &ast.StmtNop{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 62,
2018-06-30 21:38:31 +00:00
EndLine: 62,
StartPos: 1284,
EndPos: 1285,
2018-06-24 07:19:44 +00:00
},
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 63,
2018-06-30 21:38:31 +00:00
EndLine: 63,
StartPos: 1288,
EndPos: 1319,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 63,
2018-06-30 21:38:31 +00:00
EndLine: 63,
StartPos: 1300,
EndPos: 1303,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Modifiers: []ast.Vertex{
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 63,
EndLine: 63,
StartPos: 1288,
EndPos: 1293,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("final"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Extends: &ast.StmtClassExtends{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 63,
2018-06-30 21:38:31 +00:00
EndLine: 63,
StartPos: 1304,
EndPos: 1315,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
ClassName: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 63,
EndLine: 63,
StartPos: 1312,
EndPos: 1315,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 63,
EndLine: 63,
StartPos: 1312,
EndPos: 1315,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 64,
2018-06-30 21:38:31 +00:00
EndLine: 64,
StartPos: 1320,
EndPos: 1354,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 64,
2018-06-30 21:38:31 +00:00
EndLine: 64,
StartPos: 1332,
EndPos: 1335,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Modifiers: []ast.Vertex{
&ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 64,
2018-06-30 21:38:31 +00:00
EndLine: 64,
StartPos: 1320,
EndPos: 1325,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("final"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Implements: &ast.StmtClassImplements{
Node: ast.Node{
Position: &position.Position{
StartLine: 64,
EndLine: 64,
StartPos: 1336,
EndPos: 1350,
2020-05-13 17:18:53 +00:00
},
},
InterfaceNames: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 64,
EndLine: 64,
StartPos: 1347,
EndPos: 1350,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 64,
EndLine: 64,
StartPos: 1347,
EndPos: 1350,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("bar"),
},
},
},
},
},
Stmts: []ast.Vertex{},
},
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 65,
2018-06-30 21:38:31 +00:00
EndLine: 65,
StartPos: 1355,
EndPos: 1394,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 65,
2018-06-30 21:38:31 +00:00
EndLine: 65,
StartPos: 1367,
EndPos: 1370,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Modifiers: []ast.Vertex{
&ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 65,
2018-06-30 21:38:31 +00:00
EndLine: 65,
StartPos: 1355,
EndPos: 1360,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("final"),
},
},
Implements: &ast.StmtClassImplements{
Node: ast.Node{
Position: &position.Position{
StartLine: 65,
EndLine: 65,
StartPos: 1371,
EndPos: 1390,
2020-05-13 17:18:53 +00:00
},
},
InterfaceNames: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 65,
EndLine: 65,
StartPos: 1382,
EndPos: 1385,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 65,
EndLine: 65,
StartPos: 1382,
EndPos: 1385,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 65,
EndLine: 65,
StartPos: 1387,
EndPos: 1390,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 65,
EndLine: 65,
StartPos: 1387,
EndPos: 1390,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("baz"),
2018-06-24 07:19:44 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtConstList{
Node: ast.Node{
Position: &position.Position{
StartLine: 67,
EndLine: 67,
StartPos: 1396,
EndPos: 1419,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Consts: []ast.Vertex{
&ast.StmtConstant{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 67,
2018-06-30 21:38:31 +00:00
EndLine: 67,
StartPos: 1402,
EndPos: 1409,
2018-06-24 07:19:44 +00:00
},
},
Name: &ast.Identifier{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 67,
EndLine: 67,
StartPos: 1402,
EndPos: 1405,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("FOO"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 67,
EndLine: 67,
StartPos: 1408,
EndPos: 1409,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtConstant{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 67,
2018-06-30 21:38:31 +00:00
EndLine: 67,
StartPos: 1411,
EndPos: 1418,
2018-06-24 07:19:44 +00:00
},
},
Name: &ast.Identifier{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 67,
EndLine: 67,
StartPos: 1411,
EndPos: 1414,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("BAR"),
},
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 67,
EndLine: 67,
StartPos: 1417,
EndPos: 1418,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-02-14 19:02:57 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtWhile{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 68,
2018-06-30 21:38:31 +00:00
EndLine: 68,
StartPos: 1420,
EndPos: 1443,
2018-02-14 19:02:57 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 68,
EndLine: 68,
StartPos: 1427,
EndPos: 1428,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 68,
EndLine: 68,
StartPos: 1430,
EndPos: 1443,
2020-05-13 17:18:53 +00:00
},
},
Stmts: []ast.Vertex{
&ast.StmtContinue{
Node: ast.Node{
Position: &position.Position{
StartLine: 68,
EndLine: 68,
StartPos: 1432,
EndPos: 1441,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2018-02-14 19:02:57 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtWhile{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 69,
2018-06-30 21:38:31 +00:00
EndLine: 69,
StartPos: 1444,
EndPos: 1469,
2018-02-14 19:02:57 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 69,
EndLine: 69,
StartPos: 1451,
EndPos: 1452,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 69,
EndLine: 69,
StartPos: 1454,
EndPos: 1469,
2020-05-13 17:18:53 +00:00
},
},
Stmts: []ast.Vertex{
&ast.StmtContinue{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 69,
2018-06-30 21:38:31 +00:00
EndLine: 69,
StartPos: 1456,
EndPos: 1467,
2020-05-13 17:18:53 +00:00
},
},
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 69,
EndLine: 69,
StartPos: 1465,
EndPos: 1466,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtWhile{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 70,
2018-06-30 21:38:31 +00:00
EndLine: 70,
StartPos: 1470,
EndPos: 1496,
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 70,
EndLine: 70,
StartPos: 1477,
EndPos: 1478,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 70,
EndLine: 70,
StartPos: 1480,
EndPos: 1496,
2020-05-13 17:18:53 +00:00
},
},
Stmts: []ast.Vertex{
&ast.StmtContinue{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 70,
2018-06-30 21:38:31 +00:00
EndLine: 70,
StartPos: 1482,
EndPos: 1494,
2020-05-13 17:18:53 +00:00
},
},
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 70,
EndLine: 70,
StartPos: 1491,
EndPos: 1492,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("3"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtDeclare{
Node: ast.Node{
Position: &position.Position{
StartLine: 71,
EndLine: 71,
StartPos: 1497,
EndPos: 1514,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Consts: []ast.Vertex{
&ast.StmtConstant{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 71,
2018-06-30 21:38:31 +00:00
EndLine: 71,
StartPos: 1505,
EndPos: 1512,
2018-06-24 07:19:44 +00:00
},
},
Name: &ast.Identifier{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 71,
EndLine: 71,
StartPos: 1505,
EndPos: 1510,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("ticks"),
},
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 71,
EndLine: 71,
StartPos: 1511,
EndPos: 1512,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtNop{
Node: ast.Node{
Position: &position.Position{
StartLine: 71,
EndLine: 71,
StartPos: 1513,
EndPos: 1514,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtDeclare{
Node: ast.Node{
Position: &position.Position{
StartLine: 72,
EndLine: 72,
StartPos: 1515,
EndPos: 1550,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Consts: []ast.Vertex{
&ast.StmtConstant{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 72,
2018-06-30 21:38:31 +00:00
EndLine: 72,
StartPos: 1523,
EndPos: 1530,
2018-06-24 07:19:44 +00:00
},
},
Name: &ast.Identifier{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 72,
EndLine: 72,
StartPos: 1523,
EndPos: 1528,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("ticks"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 72,
EndLine: 72,
StartPos: 1529,
EndPos: 1530,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtConstant{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 72,
2018-06-30 21:38:31 +00:00
EndLine: 72,
StartPos: 1532,
EndPos: 1546,
2018-06-24 07:19:44 +00:00
},
},
Name: &ast.Identifier{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 72,
EndLine: 72,
StartPos: 1532,
EndPos: 1544,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("strict_types"),
},
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 72,
EndLine: 72,
StartPos: 1545,
EndPos: 1546,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 72,
EndLine: 72,
StartPos: 1548,
EndPos: 1550,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtDeclare{
Node: ast.Node{
Position: &position.Position{
StartLine: 73,
EndLine: 73,
StartPos: 1551,
EndPos: 1580,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Alt: true,
2020-05-13 17:18:53 +00:00
Consts: []ast.Vertex{
&ast.StmtConstant{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 73,
2018-06-30 21:38:31 +00:00
EndLine: 73,
StartPos: 1559,
EndPos: 1566,
2018-06-24 07:19:44 +00:00
},
},
Name: &ast.Identifier{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 73,
EndLine: 73,
StartPos: 1559,
EndPos: 1564,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("ticks"),
},
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 73,
EndLine: 73,
StartPos: 1565,
EndPos: 1566,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: -1,
EndLine: -1,
StartPos: -1,
EndPos: -1,
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtDo{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 74,
2018-06-30 21:38:31 +00:00
EndLine: 74,
StartPos: 1581,
EndPos: 1596,
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 74,
EndLine: 74,
StartPos: 1584,
EndPos: 1586,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2020-05-13 17:18:53 +00:00
StartLine: 74,
EndLine: 74,
StartPos: 1593,
EndPos: 1594,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("1"),
},
},
&ast.StmtEcho{
Node: ast.Node{
Position: &position.Position{
StartLine: 75,
EndLine: 75,
StartPos: 1597,
EndPos: 1608,
2020-05-13 17:18:53 +00:00
},
},
Exprs: []ast.Vertex{
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 75,
2018-06-30 21:38:31 +00:00
EndLine: 75,
StartPos: 1602,
EndPos: 1604,
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 75,
EndLine: 75,
StartPos: 1602,
EndPos: 1604,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 75,
EndLine: 75,
StartPos: 1606,
EndPos: 1607,
2020-05-13 17:18:53 +00:00
},
2018-06-03 06:35:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtEcho{
Node: ast.Node{
Position: &position.Position{
StartLine: 76,
EndLine: 76,
StartPos: 1609,
EndPos: 1618,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Exprs: []ast.Vertex{
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 76,
2018-06-30 21:38:31 +00:00
EndLine: 76,
StartPos: 1614,
EndPos: 1616,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 76,
EndLine: 76,
StartPos: 1614,
EndPos: 1616,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-03 06:35:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtFor{
Node: ast.Node{
Position: &position.Position{
StartLine: 77,
EndLine: 77,
StartPos: 1619,
EndPos: 1654,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Init: []ast.Vertex{
&ast.ExprAssign{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 77,
2018-06-30 21:38:31 +00:00
EndLine: 77,
StartPos: 1623,
EndPos: 1629,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 77,
2018-06-30 21:38:31 +00:00
EndLine: 77,
StartPos: 1623,
EndPos: 1625,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 77,
EndLine: 77,
StartPos: 1623,
EndPos: 1625,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$i"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 77,
EndLine: 77,
StartPos: 1628,
EndPos: 1629,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-06-03 06:35:44 +00:00
},
2018-02-13 10:16:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Cond: []ast.Vertex{
&ast.ExprBinarySmaller{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 77,
2018-06-30 21:38:31 +00:00
EndLine: 77,
StartPos: 1631,
EndPos: 1638,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 77,
2018-06-30 21:38:31 +00:00
EndLine: 77,
StartPos: 1631,
EndPos: 1633,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 77,
EndLine: 77,
StartPos: 1631,
EndPos: 1633,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$i"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 77,
EndLine: 77,
StartPos: 1636,
EndPos: 1638,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("10"),
2018-06-03 06:35:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Loop: []ast.Vertex{
&ast.ExprPostInc{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 77,
2018-06-30 21:38:31 +00:00
EndLine: 77,
StartPos: 1640,
EndPos: 1644,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 77,
2018-06-30 21:38:31 +00:00
EndLine: 77,
StartPos: 1640,
EndPos: 1642,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 77,
EndLine: 77,
StartPos: 1640,
EndPos: 1642,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$i"),
2018-06-24 07:19:44 +00:00
},
2018-02-13 10:16:53 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.ExprPostInc{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 77,
2018-06-30 21:38:31 +00:00
EndLine: 77,
StartPos: 1646,
EndPos: 1650,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 77,
2018-06-30 21:38:31 +00:00
EndLine: 77,
StartPos: 1646,
EndPos: 1648,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 77,
EndLine: 77,
StartPos: 1646,
EndPos: 1648,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$i"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 77,
EndLine: 77,
StartPos: 1652,
EndPos: 1654,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtAltFor{
Node: ast.Node{
Position: &position.Position{
StartLine: 78,
EndLine: 78,
StartPos: 1655,
EndPos: 1685,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Cond: []ast.Vertex{
&ast.ExprBinarySmaller{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 78,
2018-06-30 21:38:31 +00:00
EndLine: 78,
StartPos: 1661,
EndPos: 1668,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 78,
2018-06-30 21:38:31 +00:00
EndLine: 78,
StartPos: 1661,
EndPos: 1663,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 78,
EndLine: 78,
StartPos: 1661,
EndPos: 1663,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$i"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 78,
EndLine: 78,
StartPos: 1666,
EndPos: 1668,
2020-05-13 17:18:53 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("10"),
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Loop: []ast.Vertex{
&ast.ExprPostInc{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 78,
2018-06-30 21:38:31 +00:00
EndLine: 78,
StartPos: 1670,
EndPos: 1674,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 78,
2018-06-30 21:38:31 +00:00
EndLine: 78,
StartPos: 1670,
EndPos: 1672,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 78,
EndLine: 78,
StartPos: 1670,
EndPos: 1672,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$i"),
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: -1,
EndLine: -1,
StartPos: -1,
EndPos: -1,
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtForeach{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 79,
2018-06-30 21:38:31 +00:00
EndLine: 79,
StartPos: 1686,
EndPos: 1707,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 79,
2018-06-30 21:38:31 +00:00
EndLine: 79,
StartPos: 1695,
EndPos: 1697,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 79,
EndLine: 79,
StartPos: 1695,
EndPos: 1697,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 79,
2018-06-30 21:38:31 +00:00
EndLine: 79,
StartPos: 1701,
EndPos: 1703,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 79,
EndLine: 79,
StartPos: 1701,
EndPos: 1703,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$v"),
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 79,
EndLine: 79,
StartPos: 1705,
EndPos: 1707,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtForeach{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 80,
2018-06-30 21:38:31 +00:00
EndLine: 80,
StartPos: 1708,
EndPos: 1729,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprShortArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 80,
EndLine: 80,
StartPos: 1717,
EndPos: 1719,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Items: []ast.Vertex{},
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 80,
2018-06-30 21:38:31 +00:00
EndLine: 80,
StartPos: 1723,
EndPos: 1725,
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 80,
EndLine: 80,
StartPos: 1723,
EndPos: 1725,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$v"),
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 80,
EndLine: 80,
StartPos: 1727,
EndPos: 1729,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtAltForeach{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 81,
2018-06-30 21:38:31 +00:00
EndLine: 81,
StartPos: 1730,
EndPos: 1762,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 81,
2018-06-30 21:38:31 +00:00
EndLine: 81,
StartPos: 1739,
EndPos: 1741,
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 81,
EndLine: 81,
StartPos: 1739,
EndPos: 1741,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 81,
2018-06-30 21:38:31 +00:00
EndLine: 81,
StartPos: 1745,
EndPos: 1747,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 81,
EndLine: 81,
StartPos: 1745,
EndPos: 1747,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$v"),
2018-02-12 21:10:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: -1,
EndLine: -1,
StartPos: -1,
EndPos: -1,
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtForeach{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 82,
2018-06-30 21:38:31 +00:00
EndLine: 82,
StartPos: 1763,
EndPos: 1790,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 82,
2018-06-30 21:38:31 +00:00
EndLine: 82,
StartPos: 1772,
EndPos: 1774,
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 82,
EndLine: 82,
StartPos: 1772,
EndPos: 1774,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Key: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 82,
2018-06-30 21:38:31 +00:00
EndLine: 82,
StartPos: 1778,
EndPos: 1780,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 82,
EndLine: 82,
StartPos: 1778,
EndPos: 1780,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$k"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 82,
2018-06-30 21:38:31 +00:00
EndLine: 82,
StartPos: 1784,
EndPos: 1786,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 82,
EndLine: 82,
StartPos: 1784,
EndPos: 1786,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$v"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 82,
EndLine: 82,
StartPos: 1788,
EndPos: 1790,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtForeach{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 83,
2018-06-30 21:38:31 +00:00
EndLine: 83,
StartPos: 1791,
EndPos: 1818,
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprShortArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 83,
EndLine: 83,
StartPos: 1800,
EndPos: 1802,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Items: []ast.Vertex{},
},
Key: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 83,
2018-06-30 21:38:31 +00:00
EndLine: 83,
StartPos: 1806,
EndPos: 1808,
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 83,
EndLine: 83,
StartPos: 1806,
EndPos: 1808,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$k"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 83,
2018-06-30 21:38:31 +00:00
EndLine: 83,
StartPos: 1812,
EndPos: 1814,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 83,
EndLine: 83,
StartPos: 1812,
EndPos: 1814,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$v"),
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 83,
EndLine: 83,
StartPos: 1816,
EndPos: 1818,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtForeach{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 84,
2018-06-30 21:38:31 +00:00
EndLine: 84,
StartPos: 1819,
EndPos: 1847,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 84,
2018-06-30 21:38:31 +00:00
EndLine: 84,
StartPos: 1828,
EndPos: 1830,
2018-06-24 07:19:44 +00:00
},
2018-02-12 13:08:08 +00:00
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 84,
EndLine: 84,
StartPos: 1828,
EndPos: 1830,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Key: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 84,
2018-06-30 21:38:31 +00:00
EndLine: 84,
StartPos: 1834,
EndPos: 1836,
2018-06-24 07:19:44 +00:00
},
2018-02-12 13:08:08 +00:00
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 84,
EndLine: 84,
StartPos: 1834,
EndPos: 1836,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$k"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprReference{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 84,
2018-06-30 21:38:31 +00:00
EndLine: 84,
StartPos: 1840,
EndPos: 1843,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 84,
2018-06-30 21:38:31 +00:00
EndLine: 84,
StartPos: 1841,
EndPos: 1843,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 84,
EndLine: 84,
StartPos: 1841,
EndPos: 1843,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$v"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 84,
EndLine: 84,
StartPos: 1845,
EndPos: 1847,
2020-05-13 17:18:53 +00:00
},
},
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtForeach{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 85,
2018-06-30 21:38:31 +00:00
EndLine: 85,
StartPos: 1848,
EndPos: 1881,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 85,
2018-06-30 21:38:31 +00:00
EndLine: 85,
StartPos: 1857,
EndPos: 1859,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 85,
EndLine: 85,
StartPos: 1857,
EndPos: 1859,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Key: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 85,
2018-06-30 21:38:31 +00:00
EndLine: 85,
StartPos: 1863,
EndPos: 1865,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 85,
2018-06-30 21:38:31 +00:00
EndLine: 85,
StartPos: 1863,
EndPos: 1865,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("$k"),
2020-05-13 17:18:53 +00:00
},
},
Var: &ast.ExprList{
Node: ast.Node{
Position: &position.Position{
StartLine: 85,
EndLine: 85,
StartPos: 1869,
EndPos: 1877,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 85,
2018-06-30 21:38:31 +00:00
EndLine: 85,
StartPos: 1874,
EndPos: 1876,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 85,
2018-06-30 21:38:31 +00:00
EndLine: 85,
StartPos: 1874,
EndPos: 1876,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 85,
EndLine: 85,
StartPos: 1874,
EndPos: 1876,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$v"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 85,
EndLine: 85,
StartPos: 1879,
EndPos: 1881,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtFunction{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 86,
2018-06-30 21:38:31 +00:00
EndLine: 86,
StartPos: 1882,
EndPos: 1899,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
FunctionName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 86,
EndLine: 86,
StartPos: 1891,
EndPos: 1894,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
},
&ast.StmtFunction{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 88,
2020-05-13 17:18:53 +00:00
EndLine: 92,
StartPos: 1901,
EndPos: 1973,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
FunctionName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2020-05-13 17:18:53 +00:00
StartLine: 88,
EndLine: 88,
StartPos: 1910,
EndPos: 1913,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("foo"),
},
Stmts: []ast.Vertex{
&ast.StmtFunction{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 89,
EndLine: 89,
StartPos: 1922,
EndPos: 1939,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
FunctionName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 89,
EndLine: 89,
StartPos: 1931,
EndPos: 1934,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
},
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 90,
EndLine: 90,
StartPos: 1944,
EndPos: 1956,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 90,
EndLine: 90,
StartPos: 1950,
EndPos: 1953,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("Baz"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
},
&ast.StmtReturn{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 91,
EndLine: 91,
StartPos: 1961,
EndPos: 1971,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 91,
EndLine: 91,
StartPos: 1968,
EndPos: 1970,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 91,
EndLine: 91,
StartPos: 1968,
EndPos: 1970,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-12 13:08:08 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtFunction{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 94,
EndLine: 94,
StartPos: 1975,
EndPos: 2020,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
FunctionName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 94,
EndLine: 94,
StartPos: 1984,
EndPos: 1987,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("foo"),
},
Params: []ast.Vertex{
&ast.Parameter{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 94,
EndLine: 94,
StartPos: 1988,
EndPos: 1996,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Type: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 94,
EndLine: 94,
StartPos: 1988,
EndPos: 1993,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("array"),
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 94,
EndLine: 94,
StartPos: 1994,
EndPos: 1996,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 94,
EndLine: 94,
StartPos: 1994,
EndPos: 1996,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-12 21:10:53 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.Parameter{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 94,
EndLine: 94,
StartPos: 1998,
EndPos: 2009,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Type: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 94,
EndLine: 94,
StartPos: 1998,
EndPos: 2006,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("callable"),
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 94,
EndLine: 94,
StartPos: 2007,
EndPos: 2009,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 94,
EndLine: 94,
StartPos: 2007,
EndPos: 2009,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-12 21:10:53 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{
&ast.StmtReturn{
Node: ast.Node{
Position: &position.Position{
StartLine: 94,
EndLine: 94,
StartPos: 2012,
EndPos: 2019,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtFunction{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 95,
EndLine: 95,
StartPos: 2021,
EndPos: 2048,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ReturnsRef: true,
FunctionName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 95,
EndLine: 95,
StartPos: 2031,
EndPos: 2034,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("foo"),
},
Stmts: []ast.Vertex{
&ast.StmtReturn{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 95,
EndLine: 95,
StartPos: 2038,
EndPos: 2047,
2020-05-13 17:18:53 +00:00
},
},
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 95,
EndLine: 95,
StartPos: 2045,
EndPos: 2046,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtFunction{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 96,
EndLine: 96,
StartPos: 2049,
EndPos: 2067,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ReturnsRef: true,
FunctionName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2020-05-13 17:18:53 +00:00
StartLine: 96,
EndLine: 96,
StartPos: 2059,
EndPos: 2062,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("foo"),
},
Stmts: []ast.Vertex{},
},
&ast.StmtGlobal{
Node: ast.Node{
Position: &position.Position{
StartLine: 97,
EndLine: 97,
StartPos: 2068,
EndPos: 2097,
2020-05-13 17:18:53 +00:00
},
},
Vars: []ast.Vertex{
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 97,
EndLine: 97,
StartPos: 2075,
EndPos: 2077,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 97,
EndLine: 97,
StartPos: 2075,
EndPos: 2077,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 97,
EndLine: 97,
StartPos: 2079,
EndPos: 2081,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 97,
EndLine: 97,
StartPos: 2079,
EndPos: 2081,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 97,
EndLine: 97,
StartPos: 2083,
EndPos: 2086,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 97,
EndLine: 97,
StartPos: 2084,
EndPos: 2086,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 97,
EndLine: 97,
StartPos: 2084,
EndPos: 2086,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$c"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 97,
EndLine: 97,
StartPos: 2088,
EndPos: 2096,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.ExprFunctionCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 97,
EndLine: 97,
StartPos: 2090,
EndPos: 2095,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Function: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 97,
EndLine: 97,
StartPos: 2090,
EndPos: 2093,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 97,
EndLine: 97,
StartPos: 2090,
EndPos: 2093,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 97,
EndLine: 97,
StartPos: 2093,
EndPos: 2095,
2020-05-13 17:18:53 +00:00
},
2018-02-12 21:10:53 +00:00
},
},
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtLabel{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 98,
EndLine: 98,
StartPos: 2098,
EndPos: 2100,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
LabelName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 98,
EndLine: 98,
StartPos: 2098,
EndPos: 2099,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtGoto{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 99,
EndLine: 99,
StartPos: 2101,
EndPos: 2108,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Label: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 99,
EndLine: 99,
StartPos: 2106,
EndPos: 2107,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 100,
EndLine: 100,
StartPos: 2109,
EndPos: 2119,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 100,
EndLine: 100,
StartPos: 2113,
EndPos: 2115,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 100,
EndLine: 100,
StartPos: 2113,
EndPos: 2115,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 100,
EndLine: 100,
StartPos: 2117,
EndPos: 2119,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 101,
EndLine: 101,
StartPos: 2120,
EndPos: 2145,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 101,
EndLine: 101,
StartPos: 2124,
EndPos: 2126,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 101,
EndLine: 101,
StartPos: 2124,
EndPos: 2126,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 101,
EndLine: 101,
StartPos: 2128,
EndPos: 2130,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Stmts: []ast.Vertex{},
},
ElseIf: []ast.Vertex{
&ast.StmtElseIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 101,
EndLine: 101,
StartPos: 2131,
EndPos: 2145,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 101,
EndLine: 101,
StartPos: 2139,
EndPos: 2141,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 101,
EndLine: 101,
StartPos: 2139,
EndPos: 2141,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 101,
EndLine: 101,
StartPos: 2143,
EndPos: 2145,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 102,
EndLine: 102,
StartPos: 2146,
EndPos: 2164,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 102,
EndLine: 102,
StartPos: 2150,
EndPos: 2152,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 102,
EndLine: 102,
StartPos: 2150,
EndPos: 2152,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 102,
EndLine: 102,
StartPos: 2154,
EndPos: 2156,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
},
Else: &ast.StmtElse{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 102,
EndLine: 102,
StartPos: 2157,
EndPos: 2164,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 102,
EndLine: 102,
StartPos: 2162,
EndPos: 2164,
2020-05-13 17:18:53 +00:00
},
},
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 103,
EndLine: 103,
StartPos: 2165,
EndPos: 2213,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 103,
EndLine: 103,
StartPos: 2169,
EndPos: 2171,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 103,
EndLine: 103,
StartPos: 2169,
EndPos: 2171,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 103,
EndLine: 103,
StartPos: 2173,
EndPos: 2175,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Stmts: []ast.Vertex{},
},
ElseIf: []ast.Vertex{
&ast.StmtElseIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 103,
EndLine: 103,
StartPos: 2176,
EndPos: 2190,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 103,
EndLine: 103,
StartPos: 2184,
EndPos: 2186,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 103,
EndLine: 103,
StartPos: 2184,
EndPos: 2186,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 103,
EndLine: 103,
StartPos: 2188,
EndPos: 2190,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtElseIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 103,
EndLine: 103,
StartPos: 2191,
EndPos: 2205,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 103,
EndLine: 103,
StartPos: 2199,
EndPos: 2201,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 103,
EndLine: 103,
StartPos: 2199,
EndPos: 2201,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$c"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 103,
EndLine: 103,
StartPos: 2203,
EndPos: 2205,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Else: &ast.StmtElse{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 103,
EndLine: 103,
StartPos: 2206,
EndPos: 2213,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 103,
EndLine: 103,
StartPos: 2211,
EndPos: 2213,
2020-05-13 17:18:53 +00:00
},
},
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 104,
EndLine: 104,
StartPos: 2214,
EndPos: 2263,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 104,
EndLine: 104,
StartPos: 2218,
EndPos: 2220,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 104,
EndLine: 104,
StartPos: 2218,
EndPos: 2220,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 104,
EndLine: 104,
StartPos: 2222,
EndPos: 2224,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Stmts: []ast.Vertex{},
},
ElseIf: []ast.Vertex{
&ast.StmtElseIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 104,
EndLine: 104,
StartPos: 2225,
EndPos: 2239,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 104,
EndLine: 104,
StartPos: 2233,
EndPos: 2235,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 104,
EndLine: 104,
StartPos: 2233,
EndPos: 2235,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 104,
EndLine: 104,
StartPos: 2237,
EndPos: 2239,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Else: &ast.StmtElse{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 104,
EndLine: 104,
StartPos: 2240,
EndPos: 2263,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Stmt: &ast.StmtIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 104,
EndLine: 104,
StartPos: 2245,
EndPos: 2263,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 104,
EndLine: 104,
StartPos: 2249,
EndPos: 2251,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 104,
EndLine: 104,
StartPos: 2249,
EndPos: 2251,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$c"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 104,
EndLine: 104,
StartPos: 2253,
EndPos: 2255,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
},
Else: &ast.StmtElse{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 104,
EndLine: 104,
StartPos: 2256,
EndPos: 2263,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 104,
EndLine: 104,
StartPos: 2261,
EndPos: 2263,
2020-05-13 17:18:53 +00:00
},
},
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtNop{
Node: ast.Node{
Position: &position.Position{
StartLine: 105,
EndLine: 105,
StartPos: 2264,
EndPos: 2266,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtInlineHtml{
Node: ast.Node{
Position: &position.Position{
StartLine: 105,
EndLine: 105,
StartPos: 2266,
EndPos: 2279,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte(" <div></div> "),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtInterface{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 106,
EndLine: 106,
StartPos: 2282,
EndPos: 2298,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
InterfaceName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 106,
EndLine: 106,
StartPos: 2292,
EndPos: 2295,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
},
&ast.StmtInterface{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 107,
EndLine: 107,
StartPos: 2299,
EndPos: 2327,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
InterfaceName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 107,
EndLine: 107,
StartPos: 2309,
EndPos: 2312,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
},
Extends: &ast.StmtInterfaceExtends{
Node: ast.Node{
Position: &position.Position{
StartLine: 107,
EndLine: 107,
StartPos: 2313,
EndPos: 2324,
2020-05-13 17:18:53 +00:00
},
},
InterfaceNames: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 107,
EndLine: 107,
StartPos: 2321,
EndPos: 2324,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 107,
EndLine: 107,
StartPos: 2321,
EndPos: 2324,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtInterface{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 108,
EndLine: 108,
StartPos: 2328,
EndPos: 2361,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
InterfaceName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 108,
EndLine: 108,
StartPos: 2338,
EndPos: 2341,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
},
Extends: &ast.StmtInterfaceExtends{
Node: ast.Node{
Position: &position.Position{
StartLine: 108,
EndLine: 108,
StartPos: 2342,
EndPos: 2358,
2020-05-13 17:18:53 +00:00
},
},
InterfaceNames: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 108,
EndLine: 108,
StartPos: 2350,
EndPos: 2353,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 108,
EndLine: 108,
StartPos: 2350,
EndPos: 2353,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 108,
EndLine: 108,
StartPos: 2355,
EndPos: 2358,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 108,
EndLine: 108,
StartPos: 2355,
EndPos: 2358,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Baz"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtNamespace{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 109,
EndLine: 109,
StartPos: 2362,
EndPos: 2376,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Name: &ast.NameName{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 109,
EndLine: 109,
StartPos: 2372,
EndPos: 2375,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 109,
EndLine: 109,
StartPos: 2372,
EndPos: 2375,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtNamespace{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 110,
EndLine: 110,
StartPos: 2377,
EndPos: 2397,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Name: &ast.NameName{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 110,
EndLine: 110,
StartPos: 2387,
EndPos: 2394,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 110,
EndLine: 110,
StartPos: 2387,
EndPos: 2390,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 110,
EndLine: 110,
StartPos: 2390,
EndPos: 2394,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtNamespace{
Node: ast.Node{
Position: &position.Position{
StartLine: 111,
EndLine: 111,
StartPos: 2398,
EndPos: 2410,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 112,
EndLine: 112,
StartPos: 2411,
EndPos: 2430,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 112,
EndLine: 112,
StartPos: 2417,
EndPos: 2420,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("foo"),
},
Stmts: []ast.Vertex{
&ast.StmtPropertyList{
Node: ast.Node{
Position: &position.Position{
StartLine: 112,
EndLine: 112,
StartPos: 2422,
EndPos: 2429,
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Modifiers: []ast.Vertex{
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 112,
EndLine: 112,
StartPos: 2422,
EndPos: 2425,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("var"),
},
},
Properties: []ast.Vertex{
&ast.StmtProperty{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 112,
EndLine: 112,
StartPos: 2426,
EndPos: 2428,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 112,
EndLine: 112,
StartPos: 2426,
EndPos: 2428,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 112,
EndLine: 112,
StartPos: 2426,
EndPos: 2428,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 113,
EndLine: 113,
StartPos: 2431,
EndPos: 2468,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 113,
EndLine: 113,
StartPos: 2437,
EndPos: 2440,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("foo"),
},
Stmts: []ast.Vertex{
&ast.StmtPropertyList{
Node: ast.Node{
Position: &position.Position{
StartLine: 113,
EndLine: 113,
StartPos: 2442,
EndPos: 2467,
2020-05-13 17:18:53 +00:00
},
},
Modifiers: []ast.Vertex{
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 113,
EndLine: 113,
StartPos: 2442,
EndPos: 2448,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("public"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 113,
EndLine: 113,
StartPos: 2449,
EndPos: 2455,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("static"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Properties: []ast.Vertex{
&ast.StmtProperty{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 113,
EndLine: 113,
StartPos: 2456,
EndPos: 2458,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 113,
EndLine: 113,
StartPos: 2456,
EndPos: 2458,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 113,
EndLine: 113,
StartPos: 2456,
EndPos: 2458,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtProperty{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 113,
EndLine: 113,
StartPos: 2460,
EndPos: 2466,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 113,
EndLine: 113,
StartPos: 2460,
EndPos: 2462,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 113,
EndLine: 113,
StartPos: 2460,
EndPos: 2462,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 113,
EndLine: 113,
StartPos: 2465,
EndPos: 2466,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 114,
EndLine: 114,
StartPos: 2469,
EndPos: 2506,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 114,
EndLine: 114,
StartPos: 2475,
EndPos: 2478,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("foo"),
},
Stmts: []ast.Vertex{
&ast.StmtPropertyList{
Node: ast.Node{
Position: &position.Position{
StartLine: 114,
EndLine: 114,
StartPos: 2480,
EndPos: 2505,
2020-05-13 17:18:53 +00:00
},
},
Modifiers: []ast.Vertex{
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 114,
EndLine: 114,
StartPos: 2480,
EndPos: 2486,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("public"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 114,
EndLine: 114,
StartPos: 2487,
EndPos: 2493,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("static"),
2018-06-24 07:19:44 +00:00
},
2018-02-13 10:33:21 +00:00
},
2020-05-13 17:18:53 +00:00
Properties: []ast.Vertex{
&ast.StmtProperty{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 114,
EndLine: 114,
StartPos: 2494,
EndPos: 2500,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 114,
EndLine: 114,
StartPos: 2494,
EndPos: 2496,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 114,
EndLine: 114,
StartPos: 2494,
EndPos: 2496,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 114,
EndLine: 114,
StartPos: 2499,
EndPos: 2500,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2018-02-13 10:33:21 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtProperty{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 114,
EndLine: 114,
StartPos: 2502,
EndPos: 2504,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 114,
EndLine: 114,
StartPos: 2502,
EndPos: 2504,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 114,
EndLine: 114,
StartPos: 2502,
EndPos: 2504,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-13 10:33:21 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 115,
EndLine: 115,
StartPos: 2507,
EndPos: 2525,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 115,
EndLine: 115,
StartPos: 2514,
EndPos: 2516,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 115,
EndLine: 115,
StartPos: 2514,
EndPos: 2516,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 115,
EndLine: 115,
StartPos: 2514,
EndPos: 2516,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 115,
EndLine: 115,
StartPos: 2518,
EndPos: 2524,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 115,
EndLine: 115,
StartPos: 2518,
EndPos: 2520,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 115,
EndLine: 115,
StartPos: 2518,
EndPos: 2520,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 115,
EndLine: 115,
StartPos: 2523,
EndPos: 2524,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 116,
EndLine: 116,
StartPos: 2526,
EndPos: 2544,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 116,
EndLine: 116,
StartPos: 2533,
EndPos: 2539,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 116,
EndLine: 116,
StartPos: 2533,
EndPos: 2535,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 116,
EndLine: 116,
StartPos: 2533,
EndPos: 2535,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 116,
EndLine: 116,
StartPos: 2538,
EndPos: 2539,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2018-02-12 21:10:53 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 116,
EndLine: 116,
StartPos: 2541,
EndPos: 2543,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 116,
EndLine: 116,
StartPos: 2541,
EndPos: 2543,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 116,
EndLine: 116,
StartPos: 2541,
EndPos: 2543,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-12 21:10:53 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtAltSwitch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 118,
2020-05-13 17:18:53 +00:00
EndLine: 122,
StartPos: 2546,
EndPos: 2606,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 118,
EndLine: 118,
StartPos: 2554,
EndPos: 2555,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
},
CaseList: &ast.StmtCaseList{
Node: ast.Node{
Position: &position.Position{
StartLine: 119,
EndLine: -1,
StartPos: 2563,
2020-05-13 17:18:53 +00:00
EndPos: -1,
},
},
Cases: []ast.Vertex{
&ast.StmtCase{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 119,
2020-05-13 17:18:53 +00:00
EndLine: -1,
StartPos: 2563,
2020-05-13 17:18:53 +00:00
EndPos: -1,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 119,
EndLine: 119,
StartPos: 2568,
EndPos: 2569,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-04-29 20:10:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtDefault{
Node: ast.Node{
Position: &position.Position{
StartLine: 120,
EndLine: -1,
StartPos: 2575,
2020-05-13 17:18:53 +00:00
EndPos: -1,
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
},
&ast.StmtCase{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 121,
2020-05-13 17:18:53 +00:00
EndLine: -1,
StartPos: 2588,
2020-05-13 17:18:53 +00:00
EndPos: -1,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 121,
EndLine: 121,
StartPos: 2593,
EndPos: 2594,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("2"),
},
Stmts: []ast.Vertex{},
2018-04-29 20:10:56 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtAltSwitch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 124,
2020-05-13 17:18:53 +00:00
EndLine: 127,
StartPos: 2608,
EndPos: 2656,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 124,
EndLine: 124,
StartPos: 2616,
EndPos: 2617,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
},
CaseList: &ast.StmtCaseList{
Node: ast.Node{
Position: &position.Position{
StartLine: 125,
EndLine: -1,
StartPos: 2626,
2020-05-13 17:18:53 +00:00
EndPos: -1,
},
},
Cases: []ast.Vertex{
&ast.StmtCase{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 125,
2020-05-13 17:18:53 +00:00
EndLine: -1,
StartPos: 2626,
2020-05-13 17:18:53 +00:00
EndPos: -1,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 125,
EndLine: 125,
StartPos: 2631,
EndPos: 2632,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
},
&ast.StmtCase{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 126,
2020-05-13 17:18:53 +00:00
EndLine: -1,
StartPos: 2638,
2020-05-13 17:18:53 +00:00
EndPos: -1,
},
},
Cond: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 126,
EndLine: 126,
StartPos: 2643,
EndPos: 2644,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-04-29 20:10:56 +00:00
},
2018-02-12 21:10:53 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtSwitch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 129,
EndLine: 132,
StartPos: 2658,
EndPos: 2710,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 129,
EndLine: 129,
StartPos: 2666,
EndPos: 2667,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
CaseList: &ast.StmtCaseList{
Node: ast.Node{
Position: &position.Position{
StartLine: 129,
EndLine: 132,
StartPos: 2669,
EndPos: 2710,
2020-05-13 17:18:53 +00:00
},
},
Cases: []ast.Vertex{
&ast.StmtCase{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 130,
EndLine: 130,
StartPos: 2675,
EndPos: 2689,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 130,
EndLine: 130,
StartPos: 2680,
EndPos: 2681,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-04-29 20:10:56 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{
&ast.StmtBreak{
Node: ast.Node{
Position: &position.Position{
StartLine: 130,
EndLine: 130,
StartPos: 2683,
EndPos: 2689,
2020-05-13 17:18:53 +00:00
},
},
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtCase{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 131,
EndLine: 131,
StartPos: 2694,
EndPos: 2708,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 131,
EndLine: 131,
StartPos: 2699,
EndPos: 2700,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("2"),
},
Stmts: []ast.Vertex{
&ast.StmtBreak{
Node: ast.Node{
Position: &position.Position{
StartLine: 131,
EndLine: 131,
StartPos: 2702,
EndPos: 2708,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2018-04-29 20:10:56 +00:00
},
2018-02-12 21:10:53 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtSwitch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 134,
EndLine: 137,
StartPos: 2712,
EndPos: 2765,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 134,
EndLine: 134,
StartPos: 2720,
EndPos: 2721,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
CaseList: &ast.StmtCaseList{
Node: ast.Node{
Position: &position.Position{
StartLine: 134,
EndLine: 137,
StartPos: 2723,
EndPos: 2765,
2020-05-13 17:18:53 +00:00
},
},
Cases: []ast.Vertex{
&ast.StmtCase{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 135,
EndLine: 135,
StartPos: 2730,
EndPos: 2744,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 135,
EndLine: 135,
StartPos: 2735,
EndPos: 2736,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-04-29 20:10:56 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{
&ast.StmtBreak{
Node: ast.Node{
Position: &position.Position{
StartLine: 135,
EndLine: 135,
StartPos: 2738,
EndPos: 2744,
2020-05-13 17:18:53 +00:00
},
},
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtCase{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 136,
EndLine: 136,
StartPos: 2749,
EndPos: 2763,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Cond: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 136,
EndLine: 136,
StartPos: 2754,
EndPos: 2755,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("2"),
},
Stmts: []ast.Vertex{
&ast.StmtBreak{
Node: ast.Node{
Position: &position.Position{
StartLine: 136,
EndLine: 136,
StartPos: 2757,
EndPos: 2763,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2018-04-29 20:10:56 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtThrow{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 138,
EndLine: 138,
StartPos: 2766,
EndPos: 2775,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 138,
EndLine: 138,
StartPos: 2772,
EndPos: 2774,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 138,
EndLine: 138,
StartPos: 2772,
EndPos: 2774,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$e"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtTrait{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 139,
EndLine: 139,
StartPos: 2776,
EndPos: 2788,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
TraitName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 139,
EndLine: 139,
StartPos: 2782,
EndPos: 2785,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
},
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 140,
EndLine: 140,
StartPos: 2789,
EndPos: 2811,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 140,
EndLine: 140,
StartPos: 2795,
EndPos: 2798,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("Foo"),
},
Stmts: []ast.Vertex{
&ast.StmtTraitUse{
Node: ast.Node{
Position: &position.Position{
StartLine: 140,
EndLine: 140,
StartPos: 2801,
EndPos: 2809,
2020-05-13 17:18:53 +00:00
},
},
Traits: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 140,
EndLine: 140,
StartPos: 2805,
EndPos: 2808,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 140,
EndLine: 140,
StartPos: 2805,
EndPos: 2808,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
TraitAdaptationList: &ast.StmtNop{
Node: ast.Node{
Position: &position.Position{
StartLine: 140,
EndLine: 140,
StartPos: 2808,
EndPos: 2809,
2020-05-13 17:18:53 +00:00
},
},
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 141,
EndLine: 141,
StartPos: 2812,
EndPos: 2841,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 141,
EndLine: 141,
StartPos: 2818,
EndPos: 2821,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("Foo"),
},
Stmts: []ast.Vertex{
&ast.StmtTraitUse{
Node: ast.Node{
Position: &position.Position{
StartLine: 141,
EndLine: 141,
StartPos: 2824,
EndPos: 2839,
2020-05-13 17:18:53 +00:00
},
},
Traits: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 141,
EndLine: 141,
StartPos: 2828,
EndPos: 2831,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 141,
EndLine: 141,
StartPos: 2828,
EndPos: 2831,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 141,
EndLine: 141,
StartPos: 2833,
EndPos: 2836,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 141,
EndLine: 141,
StartPos: 2833,
EndPos: 2836,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Baz"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
TraitAdaptationList: &ast.StmtTraitAdaptationList{
Node: ast.Node{
Position: &position.Position{
StartLine: 141,
EndLine: 141,
StartPos: 2837,
EndPos: 2839,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 142,
EndLine: 142,
StartPos: 2842,
EndPos: 2887,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 142,
EndLine: 142,
StartPos: 2848,
EndPos: 2851,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("Foo"),
},
Stmts: []ast.Vertex{
&ast.StmtTraitUse{
Node: ast.Node{
Position: &position.Position{
StartLine: 142,
EndLine: 142,
StartPos: 2854,
EndPos: 2885,
2020-05-13 17:18:53 +00:00
},
},
Traits: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 142,
EndLine: 142,
StartPos: 2858,
EndPos: 2861,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 142,
EndLine: 142,
StartPos: 2858,
EndPos: 2861,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
2018-02-13 10:16:53 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 142,
EndLine: 142,
StartPos: 2863,
EndPos: 2866,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 142,
EndLine: 142,
StartPos: 2863,
EndPos: 2866,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Baz"),
2018-06-24 07:19:44 +00:00
},
2018-02-13 10:16:53 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
TraitAdaptationList: &ast.StmtTraitAdaptationList{
Node: ast.Node{
Position: &position.Position{
StartLine: 142,
EndLine: 142,
StartPos: 2867,
EndPos: 2885,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Adaptations: []ast.Vertex{
&ast.StmtTraitUseAlias{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 142,
EndLine: 142,
StartPos: 2869,
EndPos: 2882,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Ref: &ast.StmtTraitMethodRef{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 142,
EndLine: 142,
StartPos: 2869,
EndPos: 2872,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Method: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 142,
EndLine: 142,
StartPos: 2869,
EndPos: 2872,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("one"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Modifier: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 142,
EndLine: 142,
StartPos: 2876,
EndPos: 2882,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("public"),
2018-04-29 19:34:24 +00:00
},
2018-02-13 10:16:53 +00:00
},
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 143,
EndLine: 143,
StartPos: 2888,
EndPos: 2937,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 143,
EndLine: 143,
StartPos: 2894,
EndPos: 2897,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("Foo"),
},
Stmts: []ast.Vertex{
&ast.StmtTraitUse{
Node: ast.Node{
Position: &position.Position{
StartLine: 143,
EndLine: 143,
StartPos: 2900,
EndPos: 2935,
2020-05-13 17:18:53 +00:00
},
},
Traits: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 143,
EndLine: 143,
StartPos: 2904,
EndPos: 2907,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 143,
EndLine: 143,
StartPos: 2904,
EndPos: 2907,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
2018-02-13 10:16:53 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 143,
EndLine: 143,
StartPos: 2909,
EndPos: 2912,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 143,
EndLine: 143,
StartPos: 2909,
EndPos: 2912,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Baz"),
2018-06-24 07:19:44 +00:00
},
2018-02-13 10:16:53 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
TraitAdaptationList: &ast.StmtTraitAdaptationList{
Node: ast.Node{
Position: &position.Position{
StartLine: 143,
EndLine: 143,
StartPos: 2913,
EndPos: 2935,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Adaptations: []ast.Vertex{
&ast.StmtTraitUseAlias{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 143,
EndLine: 143,
StartPos: 2915,
EndPos: 2932,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Ref: &ast.StmtTraitMethodRef{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 143,
EndLine: 143,
StartPos: 2915,
EndPos: 2918,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Method: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 143,
EndLine: 143,
StartPos: 2915,
EndPos: 2918,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("one"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Modifier: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 143,
EndLine: 143,
StartPos: 2922,
EndPos: 2928,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("public"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Alias: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 143,
EndLine: 143,
StartPos: 2929,
EndPos: 2932,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("two"),
2018-04-29 19:34:24 +00:00
},
2018-02-13 10:16:53 +00:00
},
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtClass{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 144,
EndLine: 144,
StartPos: 2938,
EndPos: 3015,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClassName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 144,
EndLine: 144,
StartPos: 2944,
EndPos: 2947,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("Foo"),
},
Stmts: []ast.Vertex{
&ast.StmtTraitUse{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2950,
EndPos: 3013,
2020-05-13 17:18:53 +00:00
},
},
Traits: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2954,
EndPos: 2957,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2954,
EndPos: 2957,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2959,
EndPos: 2962,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2959,
EndPos: 2962,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Baz"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
TraitAdaptationList: &ast.StmtTraitAdaptationList{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2963,
EndPos: 3013,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Adaptations: []ast.Vertex{
&ast.StmtTraitUsePrecedence{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 144,
EndLine: 144,
StartPos: 2965,
EndPos: 2993,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Ref: &ast.StmtTraitMethodRef{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 144,
EndLine: 144,
StartPos: 2965,
EndPos: 2973,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Trait: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2965,
EndPos: 2968,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2965,
EndPos: 2968,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Method: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2970,
EndPos: 2973,
2020-05-13 17:18:53 +00:00
},
2018-04-29 19:34:24 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("one"),
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Insteadof: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2984,
EndPos: 2987,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2984,
EndPos: 2987,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Baz"),
2018-06-24 07:19:44 +00:00
},
2018-04-29 19:34:24 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2989,
EndPos: 2993,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2989,
EndPos: 2993,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Quux"),
2018-06-24 07:19:44 +00:00
},
2018-04-29 19:34:24 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtTraitUseAlias{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 144,
EndLine: 144,
StartPos: 2995,
EndPos: 3010,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Ref: &ast.StmtTraitMethodRef{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 144,
EndLine: 144,
StartPos: 2995,
EndPos: 3003,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Trait: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2995,
EndPos: 2998,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 2995,
EndPos: 2998,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Baz"),
},
},
},
Method: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 144,
EndLine: 144,
StartPos: 3000,
EndPos: 3003,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("one"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Alias: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 144,
EndLine: 144,
StartPos: 3007,
EndPos: 3010,
2018-04-29 19:34:24 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("two"),
2018-02-10 22:11:56 +00:00
},
},
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtTry{
Node: ast.Node{
Position: &position.Position{
StartLine: 146,
EndLine: -1,
StartPos: 3017,
2020-05-13 17:18:53 +00:00
EndPos: -1,
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
Catches: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtTry{
Node: ast.Node{
Position: &position.Position{
StartLine: 147,
EndLine: 147,
StartPos: 3024,
EndPos: 3054,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
Catches: []ast.Vertex{
&ast.StmtCatch{
Node: ast.Node{
Position: &position.Position{
StartLine: 147,
EndLine: 147,
StartPos: 3031,
EndPos: 3054,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Types: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 147,
EndLine: 147,
StartPos: 3038,
EndPos: 3047,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 147,
EndLine: 147,
StartPos: 3038,
EndPos: 3047,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Exception"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 147,
EndLine: 147,
StartPos: 3048,
EndPos: 3050,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 147,
EndLine: 147,
StartPos: 3048,
EndPos: 3050,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$e"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtTry{
Node: ast.Node{
Position: &position.Position{
StartLine: 148,
EndLine: 148,
StartPos: 3055,
EndPos: 3116,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
Catches: []ast.Vertex{
&ast.StmtCatch{
Node: ast.Node{
Position: &position.Position{
StartLine: 148,
EndLine: 148,
StartPos: 3062,
EndPos: 3085,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Types: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 148,
EndLine: 148,
StartPos: 3069,
EndPos: 3078,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 148,
EndLine: 148,
StartPos: 3069,
EndPos: 3078,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Exception"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 148,
EndLine: 148,
StartPos: 3079,
EndPos: 3081,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 148,
EndLine: 148,
StartPos: 3079,
EndPos: 3081,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$e"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtCatch{
Node: ast.Node{
Position: &position.Position{
StartLine: 148,
EndLine: 148,
StartPos: 3086,
EndPos: 3116,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Types: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 148,
EndLine: 148,
StartPos: 3093,
EndPos: 3109,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 148,
EndLine: 148,
StartPos: 3093,
EndPos: 3109,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("RuntimeException"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 148,
EndLine: 148,
StartPos: 3110,
EndPos: 3112,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 148,
EndLine: 148,
StartPos: 3110,
EndPos: 3112,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$e"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtTry{
Node: ast.Node{
Position: &position.Position{
StartLine: 149,
EndLine: 149,
StartPos: 3117,
EndPos: 3221,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
Catches: []ast.Vertex{
&ast.StmtCatch{
Node: ast.Node{
Position: &position.Position{
StartLine: 149,
EndLine: 149,
StartPos: 3124,
EndPos: 3147,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Types: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 149,
EndLine: 149,
StartPos: 3131,
EndPos: 3140,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 149,
EndLine: 149,
StartPos: 3131,
EndPos: 3140,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Exception"),
2018-06-24 07:19:44 +00:00
},
2018-02-12 13:08:08 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 149,
EndLine: 149,
StartPos: 3141,
EndPos: 3143,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 149,
EndLine: 149,
StartPos: 3141,
EndPos: 3143,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$e"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-12 13:08:08 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtCatch{
Node: ast.Node{
Position: &position.Position{
StartLine: 149,
EndLine: 149,
StartPos: 3148,
EndPos: 3179,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Types: []ast.Vertex{
&ast.NameFullyQualified{
Node: ast.Node{
Position: &position.Position{
StartLine: 149,
EndLine: 149,
StartPos: 3155,
EndPos: 3172,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 149,
EndLine: 149,
StartPos: 3156,
EndPos: 3172,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("RuntimeException"),
2018-06-24 07:19:44 +00:00
},
2018-02-12 13:08:08 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 149,
EndLine: 149,
StartPos: 3173,
EndPos: 3175,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 149,
EndLine: 149,
StartPos: 3173,
EndPos: 3175,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$e"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-12 13:08:08 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtCatch{
Node: ast.Node{
Position: &position.Position{
StartLine: 149,
EndLine: 149,
StartPos: 3180,
EndPos: 3221,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Types: []ast.Vertex{
&ast.NameRelative{
Node: ast.Node{
Position: &position.Position{
StartLine: 149,
EndLine: 149,
StartPos: 3187,
EndPos: 3214,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 149,
EndLine: 149,
StartPos: 3197,
EndPos: 3214,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("AdditionException"),
2018-06-24 07:19:44 +00:00
},
2018-02-12 13:08:08 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 149,
EndLine: 149,
StartPos: 3215,
EndPos: 3217,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 149,
EndLine: 149,
StartPos: 3215,
EndPos: 3217,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$e"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-12 13:08:08 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtTry{
Node: ast.Node{
Position: &position.Position{
StartLine: 150,
EndLine: 150,
StartPos: 3222,
EndPos: 3263,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
Catches: []ast.Vertex{
&ast.StmtCatch{
Node: ast.Node{
Position: &position.Position{
StartLine: 150,
EndLine: 150,
StartPos: 3229,
EndPos: 3252,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Types: []ast.Vertex{
&ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 150,
EndLine: 150,
StartPos: 3236,
EndPos: 3245,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 150,
EndLine: 150,
StartPos: 3236,
EndPos: 3245,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Exception"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 150,
EndLine: 150,
StartPos: 3246,
EndPos: 3248,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 150,
EndLine: 150,
StartPos: 3246,
EndPos: 3248,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$e"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Finally: &ast.StmtFinally{
Node: ast.Node{
Position: &position.Position{
StartLine: 150,
EndLine: 150,
StartPos: 3253,
EndPos: 3263,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtUnset{
Node: ast.Node{
Position: &position.Position{
StartLine: 152,
EndLine: 152,
StartPos: 3265,
EndPos: 3279,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 152,
EndLine: 152,
StartPos: 3271,
EndPos: 3273,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 152,
EndLine: 152,
StartPos: 3271,
EndPos: 3273,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 152,
EndLine: 152,
StartPos: 3275,
EndPos: 3277,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 152,
EndLine: 152,
StartPos: 3275,
EndPos: 3277,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
&ast.StmtUse{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 154,
EndLine: 154,
StartPos: 3281,
EndPos: 3289,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
UseDeclarations: []ast.Vertex{
&ast.StmtUseDeclaration{
Node: ast.Node{
Position: &position.Position{
StartLine: 154,
EndLine: 154,
StartPos: 3285,
EndPos: 3288,
},
2020-05-13 17:18:53 +00:00
},
Use: &ast.NameName{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 154,
EndLine: 154,
StartPos: 3285,
EndPos: 3288,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 154,
EndLine: 154,
StartPos: 3285,
EndPos: 3288,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
},
&ast.StmtUse{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 155,
EndLine: 155,
StartPos: 3290,
EndPos: 3299,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
UseDeclarations: []ast.Vertex{
&ast.StmtUseDeclaration{
Node: ast.Node{
Position: &position.Position{
StartLine: 155,
EndLine: 155,
StartPos: 3294,
EndPos: 3298,
},
2020-05-13 17:18:53 +00:00
},
Use: &ast.NameName{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 155,
EndLine: 155,
StartPos: 3295,
EndPos: 3298,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 155,
EndLine: 155,
StartPos: 3295,
EndPos: 3298,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-12 13:08:08 +00:00
},
},
},
},
},
&ast.StmtUse{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 156,
EndLine: 156,
StartPos: 3300,
EndPos: 3316,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
UseDeclarations: []ast.Vertex{
&ast.StmtUseDeclaration{
Node: ast.Node{
Position: &position.Position{
StartLine: 156,
EndLine: 156,
StartPos: 3304,
EndPos: 3315,
},
2020-05-13 17:18:53 +00:00
},
Use: &ast.NameName{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 156,
EndLine: 156,
StartPos: 3305,
EndPos: 3308,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 156,
EndLine: 156,
StartPos: 3305,
EndPos: 3308,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
Alias: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 156,
EndLine: 156,
StartPos: 3312,
EndPos: 3315,
2020-05-13 17:18:53 +00:00
},
2018-02-12 13:08:08 +00:00
},
Value: []byte("Bar"),
2018-02-12 13:08:08 +00:00
},
},
},
},
&ast.StmtUse{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 157,
EndLine: 157,
StartPos: 3317,
EndPos: 3330,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
UseDeclarations: []ast.Vertex{
&ast.StmtUseDeclaration{
Node: ast.Node{
Position: &position.Position{
StartLine: 157,
EndLine: 157,
StartPos: 3321,
EndPos: 3324,
},
2020-05-13 17:18:53 +00:00
},
Use: &ast.NameName{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 157,
EndLine: 157,
StartPos: 3321,
EndPos: 3324,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 157,
EndLine: 157,
StartPos: 3321,
EndPos: 3324,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
&ast.StmtUseDeclaration{
Node: ast.Node{
Position: &position.Position{
StartLine: 157,
EndLine: 157,
StartPos: 3326,
EndPos: 3329,
},
},
Use: &ast.NameName{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 157,
EndLine: 157,
StartPos: 3326,
EndPos: 3329,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 157,
EndLine: 157,
StartPos: 3326,
EndPos: 3329,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
},
&ast.StmtUse{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 158,
EndLine: 158,
StartPos: 3331,
EndPos: 3351,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
UseDeclarations: []ast.Vertex{
&ast.StmtUseDeclaration{
Node: ast.Node{
Position: &position.Position{
StartLine: 158,
EndLine: 158,
StartPos: 3335,
EndPos: 3338,
},
2020-05-13 17:18:53 +00:00
},
Use: &ast.NameName{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 158,
EndLine: 158,
StartPos: 3335,
EndPos: 3338,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 158,
EndLine: 158,
StartPos: 3335,
EndPos: 3338,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
&ast.StmtUseDeclaration{
Node: ast.Node{
Position: &position.Position{
StartLine: 158,
EndLine: 158,
StartPos: 3340,
EndPos: 3350,
},
},
Use: &ast.NameName{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 158,
EndLine: 158,
StartPos: 3340,
EndPos: 3343,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 158,
EndLine: 158,
StartPos: 3340,
EndPos: 3343,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
},
},
Alias: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 158,
EndLine: 158,
StartPos: 3347,
EndPos: 3350,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
Value: []byte("Baz"),
2018-02-10 22:11:56 +00:00
},
},
},
},
&ast.StmtUse{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 159,
EndLine: 159,
StartPos: 3352,
EndPos: 3375,
2018-06-24 07:19:44 +00:00
},
},
Type: &ast.Identifier{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 159,
EndLine: 159,
StartPos: 3356,
EndPos: 3364,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("function"),
},
UseDeclarations: []ast.Vertex{
&ast.StmtUseDeclaration{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 159,
EndLine: 159,
StartPos: 3365,
EndPos: 3368,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Use: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 159,
EndLine: 159,
StartPos: 3365,
EndPos: 3368,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 159,
EndLine: 159,
StartPos: 3365,
EndPos: 3368,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
&ast.StmtUseDeclaration{
Node: ast.Node{
Position: &position.Position{
StartLine: 159,
EndLine: 159,
StartPos: 3370,
EndPos: 3374,
},
},
Use: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 159,
EndLine: 159,
StartPos: 3371,
EndPos: 3374,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 159,
EndLine: 159,
StartPos: 3371,
EndPos: 3374,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
},
&ast.StmtUse{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 160,
EndLine: 160,
StartPos: 3376,
EndPos: 3413,
2018-06-24 07:19:44 +00:00
},
},
Type: &ast.Identifier{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 160,
EndLine: 160,
StartPos: 3380,
EndPos: 3388,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("function"),
},
UseDeclarations: []ast.Vertex{
&ast.StmtUseDeclaration{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 160,
EndLine: 160,
StartPos: 3389,
EndPos: 3399,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Use: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 160,
EndLine: 160,
StartPos: 3389,
EndPos: 3392,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 160,
EndLine: 160,
StartPos: 3389,
EndPos: 3392,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
Alias: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 160,
EndLine: 160,
StartPos: 3396,
EndPos: 3399,
2020-05-13 17:18:53 +00:00
},
2018-02-12 13:08:08 +00:00
},
Value: []byte("foo"),
},
},
&ast.StmtUseDeclaration{
Node: ast.Node{
Position: &position.Position{
StartLine: 160,
EndLine: 160,
StartPos: 3401,
EndPos: 3412,
},
},
Use: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 160,
EndLine: 160,
StartPos: 3402,
EndPos: 3405,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 160,
EndLine: 160,
StartPos: 3402,
EndPos: 3405,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
},
},
Alias: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 160,
EndLine: 160,
StartPos: 3409,
EndPos: 3412,
2020-05-13 17:18:53 +00:00
},
2018-02-12 13:08:08 +00:00
},
Value: []byte("bar"),
2018-02-12 13:08:08 +00:00
},
},
},
},
&ast.StmtUse{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 161,
EndLine: 161,
StartPos: 3414,
EndPos: 3434,
2018-06-24 07:19:44 +00:00
},
},
Type: &ast.Identifier{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 161,
EndLine: 161,
StartPos: 3418,
EndPos: 3423,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("const"),
},
UseDeclarations: []ast.Vertex{
&ast.StmtUseDeclaration{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 161,
EndLine: 161,
StartPos: 3424,
EndPos: 3427,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Use: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 161,
EndLine: 161,
StartPos: 3424,
EndPos: 3427,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 161,
EndLine: 161,
StartPos: 3424,
EndPos: 3427,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-12 13:08:08 +00:00
},
},
},
&ast.StmtUseDeclaration{
Node: ast.Node{
Position: &position.Position{
StartLine: 161,
EndLine: 161,
StartPos: 3429,
EndPos: 3433,
},
},
Use: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 161,
EndLine: 161,
StartPos: 3430,
EndPos: 3433,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 161,
EndLine: 161,
StartPos: 3430,
EndPos: 3433,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
2018-02-12 13:08:08 +00:00
},
},
},
},
},
&ast.StmtUse{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 162,
EndLine: 162,
StartPos: 3435,
EndPos: 3469,
2018-06-24 07:19:44 +00:00
},
},
Type: &ast.Identifier{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 162,
EndLine: 162,
StartPos: 3439,
EndPos: 3444,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("const"),
},
UseDeclarations: []ast.Vertex{
&ast.StmtUseDeclaration{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 162,
EndLine: 162,
StartPos: 3445,
EndPos: 3455,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Use: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 162,
EndLine: 162,
StartPos: 3445,
EndPos: 3448,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 162,
EndLine: 162,
StartPos: 3445,
EndPos: 3448,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
Alias: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 162,
EndLine: 162,
StartPos: 3452,
EndPos: 3455,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
Value: []byte("foo"),
},
},
&ast.StmtUseDeclaration{
Node: ast.Node{
Position: &position.Position{
StartLine: 162,
EndLine: 162,
StartPos: 3457,
EndPos: 3468,
},
},
Use: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 162,
EndLine: 162,
StartPos: 3458,
EndPos: 3461,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
2020-05-13 17:18:53 +00:00
Node: ast.Node{
Position: &position.Position{
StartLine: 162,
EndLine: 162,
StartPos: 3458,
EndPos: 3461,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("Bar"),
2018-06-24 07:19:44 +00:00
},
},
},
Alias: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 162,
EndLine: 162,
StartPos: 3465,
EndPos: 3468,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
Value: []byte("bar"),
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 164,
EndLine: 164,
StartPos: 3471,
EndPos: 3477,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 164,
EndLine: 164,
StartPos: 3471,
EndPos: 3476,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 164,
EndLine: 164,
StartPos: 3471,
EndPos: 3473,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 164,
EndLine: 164,
StartPos: 3471,
EndPos: 3473,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Dim: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 164,
EndLine: 164,
StartPos: 3474,
EndPos: 3475,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 165,
EndLine: 165,
StartPos: 3478,
EndPos: 3487,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 165,
EndLine: 165,
StartPos: 3478,
EndPos: 3486,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 165,
EndLine: 165,
StartPos: 3478,
EndPos: 3483,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 165,
EndLine: 165,
StartPos: 3478,
EndPos: 3480,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 165,
EndLine: 165,
StartPos: 3478,
EndPos: 3480,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2020-05-13 17:18:53 +00:00
},
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 165,
EndLine: 165,
StartPos: 3481,
EndPos: 3482,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 165,
EndLine: 165,
StartPos: 3484,
EndPos: 3485,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 166,
EndLine: 166,
StartPos: 3488,
EndPos: 3496,
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 166,
EndLine: 166,
StartPos: 3488,
EndPos: 3495,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 167,
EndLine: 167,
StartPos: 3497,
EndPos: 3506,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 167,
EndLine: 167,
StartPos: 3497,
EndPos: 3505,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 167,
EndLine: 167,
StartPos: 3503,
EndPos: 3504,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 167,
EndLine: 167,
StartPos: 3503,
EndPos: 3504,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 168,
EndLine: 168,
StartPos: 3507,
EndPos: 3525,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 168,
EndLine: 168,
StartPos: 3507,
EndPos: 3524,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 168,
EndLine: 168,
StartPos: 3513,
EndPos: 3517,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Key: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 168,
EndLine: 168,
StartPos: 3513,
EndPos: 3514,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Val: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 168,
EndLine: 168,
StartPos: 3516,
EndPos: 3517,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 168,
EndLine: 168,
StartPos: 3519,
EndPos: 3522,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ExprReference{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 168,
EndLine: 168,
StartPos: 3519,
EndPos: 3522,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 168,
EndLine: 168,
StartPos: 3520,
EndPos: 3522,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 168,
EndLine: 168,
StartPos: 3520,
EndPos: 3522,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.ExprArrayItem{},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 169,
EndLine: 169,
StartPos: 3526,
EndPos: 3541,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 169,
EndLine: 169,
StartPos: 3526,
EndPos: 3540,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 169,
EndLine: 169,
StartPos: 3532,
EndPos: 3539,
2018-07-24 19:24:32 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Key: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 169,
EndLine: 169,
StartPos: 3532,
EndPos: 3533,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("3"),
},
Val: &ast.ExprReference{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 169,
EndLine: 169,
StartPos: 3536,
EndPos: 3539,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 169,
EndLine: 169,
StartPos: 3537,
EndPos: 3539,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 169,
EndLine: 169,
StartPos: 3537,
EndPos: 3539,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-14 19:02:57 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 170,
EndLine: 170,
StartPos: 3542,
EndPos: 3571,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 170,
EndLine: 170,
StartPos: 3542,
EndPos: 3570,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 170,
EndLine: 170,
StartPos: 3548,
EndPos: 3551,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ExprReference{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 170,
EndLine: 170,
StartPos: 3548,
EndPos: 3551,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 170,
EndLine: 170,
StartPos: 3549,
EndPos: 3551,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 170,
EndLine: 170,
StartPos: 3549,
EndPos: 3551,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-14 19:02:57 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 170,
EndLine: 170,
StartPos: 3553,
EndPos: 3557,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Key: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 170,
EndLine: 170,
StartPos: 3553,
EndPos: 3554,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Val: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 170,
EndLine: 170,
StartPos: 3556,
EndPos: 3557,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 170,
EndLine: 170,
StartPos: 3559,
EndPos: 3560,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Val: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 170,
EndLine: 170,
StartPos: 3559,
EndPos: 3560,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 170,
EndLine: 170,
StartPos: 3562,
EndPos: 3569,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Key: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 170,
EndLine: 170,
StartPos: 3562,
EndPos: 3563,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("3"),
},
Val: &ast.ExprReference{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 170,
EndLine: 170,
StartPos: 3566,
EndPos: 3569,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 170,
EndLine: 170,
StartPos: 3567,
EndPos: 3569,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 170,
EndLine: 170,
StartPos: 3567,
EndPos: 3569,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-14 19:02:57 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 171,
EndLine: 171,
StartPos: 3572,
EndPos: 3576,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBitwiseNot{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 171,
EndLine: 171,
StartPos: 3572,
EndPos: 3575,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 171,
EndLine: 171,
StartPos: 3573,
EndPos: 3575,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 171,
EndLine: 171,
StartPos: 3573,
EndPos: 3575,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 172,
EndLine: 172,
StartPos: 3577,
EndPos: 3581,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBooleanNot{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 172,
EndLine: 172,
StartPos: 3577,
EndPos: 3580,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 172,
EndLine: 172,
StartPos: 3578,
EndPos: 3580,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 172,
EndLine: 172,
StartPos: 3578,
EndPos: 3580,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 174,
EndLine: 174,
StartPos: 3583,
EndPos: 3592,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprClassConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 174,
EndLine: 174,
StartPos: 3583,
EndPos: 3591,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 174,
EndLine: 174,
StartPos: 3583,
EndPos: 3586,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 174,
EndLine: 174,
StartPos: 3583,
EndPos: 3586,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
ConstantName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 174,
EndLine: 174,
StartPos: 3588,
EndPos: 3591,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Bar"),
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 175,
EndLine: 175,
StartPos: 3593,
EndPos: 3603,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprClone{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 175,
EndLine: 175,
StartPos: 3593,
2020-08-09 20:40:55 +00:00
EndPos: 3602,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 175,
EndLine: 175,
StartPos: 3599,
EndPos: 3601,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 175,
EndLine: 175,
StartPos: 3599,
EndPos: 3601,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 176,
EndLine: 176,
StartPos: 3604,
EndPos: 3613,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprClone{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 176,
EndLine: 176,
StartPos: 3604,
EndPos: 3612,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 176,
EndLine: 176,
StartPos: 3610,
EndPos: 3612,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 176,
EndLine: 176,
StartPos: 3610,
EndPos: 3612,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 177,
EndLine: 177,
StartPos: 3614,
EndPos: 3627,
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprClosure{
Node: ast.Node{
Position: &position.Position{
StartLine: 177,
EndLine: 177,
StartPos: 3614,
EndPos: 3626,
2020-05-13 17:18:53 +00:00
},
},
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 178,
EndLine: 178,
StartPos: 3628,
EndPos: 3662,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprClosure{
Node: ast.Node{
Position: &position.Position{
StartLine: 178,
EndLine: 178,
StartPos: 3628,
EndPos: 3661,
2020-05-13 17:18:53 +00:00
},
},
Params: []ast.Vertex{
&ast.Parameter{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 178,
EndLine: 178,
StartPos: 3637,
EndPos: 3639,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 178,
EndLine: 178,
StartPos: 3637,
EndPos: 3639,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 178,
EndLine: 178,
StartPos: 3637,
EndPos: 3639,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.Parameter{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 178,
EndLine: 178,
StartPos: 3641,
EndPos: 3643,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 178,
EndLine: 178,
StartPos: 3641,
EndPos: 3643,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 178,
EndLine: 178,
StartPos: 3641,
EndPos: 3643,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClosureUse: &ast.ExprClosureUse{
Node: ast.Node{
Position: &position.Position{
StartLine: 178,
EndLine: 178,
StartPos: 3645,
EndPos: 3658,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Uses: []ast.Vertex{
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 178,
EndLine: 178,
StartPos: 3650,
EndPos: 3652,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 178,
EndLine: 178,
StartPos: 3650,
EndPos: 3652,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$c"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.ExprReference{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 178,
EndLine: 178,
StartPos: 3654,
EndPos: 3657,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 178,
EndLine: 178,
StartPos: 3655,
EndPos: 3657,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 178,
EndLine: 178,
StartPos: 3655,
EndPos: 3657,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$d"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 179,
EndLine: 179,
StartPos: 3663,
EndPos: 3697,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprClosure{
Node: ast.Node{
Position: &position.Position{
StartLine: 179,
EndLine: 179,
StartPos: 3663,
EndPos: 3696,
2020-05-13 17:18:53 +00:00
},
},
Params: []ast.Vertex{
&ast.Parameter{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 179,
EndLine: 179,
StartPos: 3672,
EndPos: 3674,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 179,
EndLine: 179,
StartPos: 3672,
EndPos: 3674,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 179,
EndLine: 179,
StartPos: 3672,
EndPos: 3674,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-13 15:42:00 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.Parameter{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 179,
EndLine: 179,
StartPos: 3676,
EndPos: 3678,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 179,
EndLine: 179,
StartPos: 3676,
EndPos: 3678,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 179,
EndLine: 179,
StartPos: 3676,
EndPos: 3678,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-13 15:42:00 +00:00
},
},
2020-05-13 17:18:53 +00:00
ClosureUse: &ast.ExprClosureUse{
Node: ast.Node{
Position: &position.Position{
StartLine: 179,
EndLine: 179,
StartPos: 3680,
EndPos: 3693,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Uses: []ast.Vertex{
&ast.ExprReference{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 179,
EndLine: 179,
StartPos: 3685,
EndPos: 3688,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 179,
EndLine: 179,
StartPos: 3686,
EndPos: 3688,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 179,
EndLine: 179,
StartPos: 3686,
EndPos: 3688,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$c"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 179,
EndLine: 179,
StartPos: 3690,
EndPos: 3692,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 179,
EndLine: 179,
StartPos: 3690,
EndPos: 3692,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$d"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-13 15:42:00 +00:00
},
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-13 15:42:00 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 180,
EndLine: 180,
StartPos: 3698,
EndPos: 3712,
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprClosure{
Node: ast.Node{
Position: &position.Position{
StartLine: 180,
EndLine: 180,
StartPos: 3698,
EndPos: 3711,
2020-05-13 17:18:53 +00:00
},
},
Stmts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 181,
EndLine: 181,
StartPos: 3713,
EndPos: 3717,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 181,
EndLine: 181,
StartPos: 3713,
EndPos: 3716,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Const: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 181,
EndLine: 181,
StartPos: 3713,
EndPos: 3716,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 181,
EndLine: 181,
StartPos: 3713,
EndPos: 3716,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 182,
EndLine: 182,
StartPos: 3718,
EndPos: 3732,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 182,
EndLine: 182,
StartPos: 3718,
EndPos: 3731,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Const: &ast.NameRelative{
Node: ast.Node{
Position: &position.Position{
StartLine: 182,
EndLine: 182,
StartPos: 3718,
EndPos: 3731,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 182,
EndLine: 182,
StartPos: 3728,
EndPos: 3731,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 183,
EndLine: 183,
StartPos: 3733,
EndPos: 3738,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 183,
EndLine: 183,
StartPos: 3733,
EndPos: 3737,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Const: &ast.NameFullyQualified{
Node: ast.Node{
Position: &position.Position{
StartLine: 183,
EndLine: 183,
StartPos: 3733,
EndPos: 3737,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 183,
EndLine: 183,
StartPos: 3734,
EndPos: 3737,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 185,
EndLine: 185,
StartPos: 3740,
EndPos: 3750,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprEmpty{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 185,
EndLine: 185,
StartPos: 3740,
EndPos: 3749,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 185,
EndLine: 185,
StartPos: 3746,
EndPos: 3748,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 185,
EndLine: 185,
StartPos: 3746,
EndPos: 3748,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 186,
EndLine: 186,
StartPos: 3751,
EndPos: 3762,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprEmpty{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 186,
EndLine: 186,
StartPos: 3751,
EndPos: 3761,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 186,
EndLine: 186,
StartPos: 3757,
EndPos: 3760,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Const: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 186,
EndLine: 186,
StartPos: 3757,
EndPos: 3760,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 186,
EndLine: 186,
StartPos: 3757,
EndPos: 3760,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-14 19:02:57 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 187,
EndLine: 187,
StartPos: 3763,
EndPos: 3767,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprErrorSuppress{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 187,
EndLine: 187,
StartPos: 3763,
EndPos: 3766,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 187,
EndLine: 187,
StartPos: 3764,
EndPos: 3766,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 187,
EndLine: 187,
StartPos: 3764,
EndPos: 3766,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 188,
EndLine: 188,
StartPos: 3768,
EndPos: 3777,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprEval{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 188,
EndLine: 188,
StartPos: 3768,
EndPos: 3776,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 188,
EndLine: 188,
StartPos: 3773,
EndPos: 3775,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 188,
EndLine: 188,
StartPos: 3773,
EndPos: 3775,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 189,
EndLine: 189,
StartPos: 3778,
EndPos: 3783,
2020-05-13 17:18:53 +00:00
},
},
Expr: &ast.ExprExit{
Node: ast.Node{
Position: &position.Position{
StartLine: 189,
EndLine: 189,
StartPos: 3778,
EndPos: 3782,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 190,
EndLine: 190,
StartPos: 3784,
EndPos: 3793,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprExit{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 190,
EndLine: 190,
StartPos: 3784,
EndPos: 3792,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 190,
EndLine: 190,
StartPos: 3789,
EndPos: 3791,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 190,
EndLine: 190,
StartPos: 3789,
EndPos: 3791,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 191,
EndLine: 191,
StartPos: 3794,
EndPos: 3800,
2020-05-13 17:18:53 +00:00
},
},
Expr: &ast.ExprExit{
Node: ast.Node{
Position: &position.Position{
StartLine: 191,
EndLine: 191,
StartPos: 3794,
EndPos: 3799,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2018-07-24 19:24:32 +00:00
Die: true,
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 192,
EndLine: 192,
StartPos: 3801,
EndPos: 3809,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprExit{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 192,
EndLine: 192,
StartPos: 3801,
EndPos: 3808,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Die: true,
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 192,
EndLine: 192,
StartPos: 3805,
EndPos: 3807,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 192,
EndLine: 192,
StartPos: 3805,
EndPos: 3807,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 193,
EndLine: 193,
StartPos: 3810,
EndPos: 3816,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprFunctionCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 193,
EndLine: 193,
StartPos: 3810,
EndPos: 3815,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Function: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 193,
EndLine: 193,
StartPos: 3810,
EndPos: 3813,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 193,
EndLine: 193,
StartPos: 3810,
EndPos: 3813,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 193,
EndLine: 193,
StartPos: 3813,
EndPos: 3815,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 194,
EndLine: 194,
StartPos: 3817,
EndPos: 3836,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprFunctionCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 194,
EndLine: 194,
StartPos: 3817,
EndPos: 3835,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Function: &ast.NameRelative{
Node: ast.Node{
Position: &position.Position{
StartLine: 194,
EndLine: 194,
StartPos: 3817,
EndPos: 3830,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 194,
EndLine: 194,
StartPos: 3827,
EndPos: 3830,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 194,
EndLine: 194,
StartPos: 3830,
EndPos: 3835,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Arguments: []ast.Vertex{
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 194,
EndLine: 194,
StartPos: 3832,
EndPos: 3834,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
IsReference: true,
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 194,
EndLine: 194,
StartPos: 3832,
EndPos: 3834,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 194,
EndLine: 194,
StartPos: 3832,
EndPos: 3834,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-04-29 16:58:49 +00:00
},
2018-02-12 21:10:53 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 195,
EndLine: 195,
StartPos: 3837,
EndPos: 3846,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprFunctionCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 195,
EndLine: 195,
StartPos: 3837,
EndPos: 3845,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Function: &ast.NameFullyQualified{
Node: ast.Node{
Position: &position.Position{
StartLine: 195,
EndLine: 195,
StartPos: 3837,
EndPos: 3841,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 195,
EndLine: 195,
StartPos: 3838,
EndPos: 3841,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 195,
EndLine: 195,
StartPos: 3841,
EndPos: 3845,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Arguments: []ast.Vertex{
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 195,
EndLine: 195,
StartPos: 3842,
EndPos: 3844,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprShortArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 195,
EndLine: 195,
StartPos: 3842,
EndPos: 3844,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{},
2018-04-29 16:58:49 +00:00
},
2018-02-12 21:10:53 +00:00
},
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 196,
EndLine: 196,
StartPos: 3847,
EndPos: 3862,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprFunctionCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 196,
EndLine: 196,
StartPos: 3847,
EndPos: 3861,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Function: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 196,
EndLine: 196,
StartPos: 3847,
EndPos: 3851,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 196,
EndLine: 196,
StartPos: 3847,
EndPos: 3851,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("$foo"),
2020-05-13 17:18:53 +00:00
},
},
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 196,
EndLine: 196,
StartPos: 3851,
EndPos: 3861,
2020-05-13 17:18:53 +00:00
},
},
Arguments: []ast.Vertex{
&ast.Argument{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 196,
EndLine: 196,
StartPos: 3852,
EndPos: 3860,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprYield{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 196,
EndLine: 196,
StartPos: 3852,
EndPos: 3860,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 196,
EndLine: 196,
StartPos: 3858,
EndPos: 3860,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 196,
EndLine: 196,
StartPos: 3858,
EndPos: 3860,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-04-29 16:58:49 +00:00
},
2018-02-12 21:10:53 +00:00
},
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 198,
EndLine: 198,
StartPos: 3864,
EndPos: 3869,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprPostDec{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 198,
EndLine: 198,
StartPos: 3864,
EndPos: 3868,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 198,
EndLine: 198,
StartPos: 3864,
EndPos: 3866,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 198,
EndLine: 198,
StartPos: 3864,
EndPos: 3866,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-07-24 19:24:32 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 199,
EndLine: 199,
StartPos: 3870,
EndPos: 3875,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprPostInc{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 199,
EndLine: 199,
StartPos: 3870,
EndPos: 3874,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 199,
EndLine: 199,
StartPos: 3870,
EndPos: 3872,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 199,
EndLine: 199,
StartPos: 3870,
EndPos: 3872,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-07-24 19:24:32 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 200,
2018-06-30 21:38:31 +00:00
EndLine: 200,
StartPos: 3876,
EndPos: 3881,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprPreDec{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 200,
2018-06-30 21:38:31 +00:00
EndLine: 200,
StartPos: 3876,
EndPos: 3880,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 200,
2018-06-30 21:38:31 +00:00
EndLine: 200,
StartPos: 3878,
EndPos: 3880,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 200,
EndLine: 200,
StartPos: 3878,
EndPos: 3880,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 201,
2018-06-30 21:38:31 +00:00
EndLine: 201,
StartPos: 3882,
EndPos: 3887,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprPreInc{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 201,
2018-06-30 21:38:31 +00:00
EndLine: 201,
StartPos: 3882,
EndPos: 3886,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 201,
2018-06-30 21:38:31 +00:00
EndLine: 201,
StartPos: 3884,
EndPos: 3886,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 201,
EndLine: 201,
StartPos: 3884,
EndPos: 3886,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 203,
EndLine: 203,
StartPos: 3889,
EndPos: 3900,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprInclude{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 203,
EndLine: 203,
StartPos: 3889,
EndPos: 3899,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 203,
EndLine: 203,
StartPos: 3897,
EndPos: 3899,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 203,
EndLine: 203,
StartPos: 3897,
EndPos: 3899,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 204,
EndLine: 204,
StartPos: 3901,
EndPos: 3917,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprIncludeOnce{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 204,
EndLine: 204,
StartPos: 3901,
EndPos: 3916,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 204,
EndLine: 204,
StartPos: 3914,
EndPos: 3916,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 204,
EndLine: 204,
StartPos: 3914,
EndPos: 3916,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 205,
2018-06-30 21:38:31 +00:00
EndLine: 205,
StartPos: 3918,
EndPos: 3929,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprRequire{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 205,
2018-06-30 21:38:31 +00:00
EndLine: 205,
StartPos: 3918,
EndPos: 3928,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 205,
2018-06-30 21:38:31 +00:00
EndLine: 205,
StartPos: 3926,
EndPos: 3928,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 205,
EndLine: 205,
StartPos: 3926,
EndPos: 3928,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 206,
2018-06-30 21:38:31 +00:00
EndLine: 206,
StartPos: 3930,
EndPos: 3946,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprRequireOnce{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 206,
2018-06-30 21:38:31 +00:00
EndLine: 206,
StartPos: 3930,
EndPos: 3945,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 206,
2018-06-30 21:38:31 +00:00
EndLine: 206,
StartPos: 3943,
EndPos: 3945,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 206,
EndLine: 206,
StartPos: 3943,
EndPos: 3945,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 208,
2018-06-30 21:38:31 +00:00
EndLine: 208,
StartPos: 3948,
EndPos: 3966,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprInstanceOf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 208,
2018-06-30 21:38:31 +00:00
EndLine: 208,
StartPos: 3948,
EndPos: 3965,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 208,
2018-06-30 21:38:31 +00:00
EndLine: 208,
StartPos: 3948,
EndPos: 3950,
2018-06-24 07:19:44 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 208,
EndLine: 208,
StartPos: 3948,
EndPos: 3950,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2020-05-13 17:18:53 +00:00
},
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 208,
EndLine: 208,
StartPos: 3962,
EndPos: 3965,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 208,
EndLine: 208,
StartPos: 3962,
EndPos: 3965,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-07-24 19:24:32 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 209,
EndLine: 209,
StartPos: 3967,
EndPos: 3995,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprInstanceOf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 209,
EndLine: 209,
StartPos: 3967,
EndPos: 3994,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 209,
EndLine: 209,
StartPos: 3967,
EndPos: 3969,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 209,
EndLine: 209,
StartPos: 3967,
EndPos: 3969,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2020-05-13 17:18:53 +00:00
},
},
Class: &ast.NameRelative{
Node: ast.Node{
Position: &position.Position{
StartLine: 209,
EndLine: 209,
StartPos: 3981,
EndPos: 3994,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 209,
EndLine: 209,
StartPos: 3991,
EndPos: 3994,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 210,
EndLine: 210,
StartPos: 3996,
EndPos: 4015,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprInstanceOf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 210,
EndLine: 210,
StartPos: 3996,
EndPos: 4014,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 210,
EndLine: 210,
StartPos: 3996,
EndPos: 3998,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 210,
EndLine: 210,
StartPos: 3996,
EndPos: 3998,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2020-05-13 17:18:53 +00:00
},
},
Class: &ast.NameFullyQualified{
Node: ast.Node{
Position: &position.Position{
StartLine: 210,
EndLine: 210,
StartPos: 4010,
EndPos: 4014,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 210,
EndLine: 210,
StartPos: 4011,
EndPos: 4014,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 212,
2018-06-30 21:38:31 +00:00
EndLine: 212,
StartPos: 4017,
EndPos: 4031,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprIsset{
Node: ast.Node{
Position: &position.Position{
StartLine: 212,
EndLine: 212,
StartPos: 4017,
EndPos: 4030,
2020-05-13 17:18:53 +00:00
},
},
Vars: []ast.Vertex{
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 212,
2018-06-30 21:38:31 +00:00
EndLine: 212,
StartPos: 4023,
EndPos: 4025,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 212,
EndLine: 212,
StartPos: 4023,
EndPos: 4025,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 212,
EndLine: 212,
StartPos: 4027,
EndPos: 4029,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 212,
EndLine: 212,
StartPos: 4027,
EndPos: 4029,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 213,
EndLine: 213,
StartPos: 4032,
EndPos: 4043,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprIsset{
Node: ast.Node{
Position: &position.Position{
StartLine: 213,
EndLine: 213,
StartPos: 4032,
EndPos: 4042,
2020-05-13 17:18:53 +00:00
},
},
Vars: []ast.Vertex{
&ast.ExprConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 213,
EndLine: 213,
StartPos: 4038,
EndPos: 4041,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Const: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 213,
EndLine: 213,
StartPos: 4038,
EndPos: 4041,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 213,
EndLine: 213,
StartPos: 4038,
EndPos: 4041,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-14 19:02:57 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 214,
EndLine: 214,
StartPos: 4044,
EndPos: 4056,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssign{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 214,
EndLine: 214,
StartPos: 4044,
EndPos: 4055,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Var: &ast.ExprList{
Node: ast.Node{
Position: &position.Position{
StartLine: 214,
EndLine: 214,
StartPos: 4044,
EndPos: 4050,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Items: []ast.Vertex{},
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 214,
EndLine: 214,
StartPos: 4053,
EndPos: 4055,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 214,
EndLine: 214,
StartPos: 4053,
EndPos: 4055,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 19:02:57 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 215,
EndLine: 215,
StartPos: 4057,
EndPos: 4075,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssign{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 215,
EndLine: 215,
StartPos: 4057,
EndPos: 4074,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprList{
Node: ast.Node{
Position: &position.Position{
StartLine: 215,
EndLine: 215,
StartPos: 4057,
EndPos: 4069,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 215,
EndLine: 215,
StartPos: 4062,
EndPos: 4064,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 215,
EndLine: 215,
StartPos: 4062,
EndPos: 4064,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 215,
EndLine: 215,
StartPos: 4062,
EndPos: 4064,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 215,
EndLine: 215,
StartPos: 4066,
EndPos: 4068,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 215,
EndLine: 215,
StartPos: 4066,
EndPos: 4068,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 215,
EndLine: 215,
StartPos: 4066,
EndPos: 4068,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 215,
EndLine: 215,
StartPos: 4072,
EndPos: 4074,
2018-02-14 19:02:57 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 215,
EndLine: 215,
StartPos: 4072,
EndPos: 4074,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 216,
EndLine: 216,
StartPos: 4076,
EndPos: 4092,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssign{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 216,
EndLine: 216,
StartPos: 4076,
EndPos: 4091,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprList{
Node: ast.Node{
Position: &position.Position{
StartLine: 216,
EndLine: 216,
StartPos: 4076,
EndPos: 4086,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 216,
EndLine: 216,
StartPos: 4081,
EndPos: 4085,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 216,
EndLine: 216,
StartPos: 4081,
EndPos: 4085,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 216,
EndLine: 216,
StartPos: 4081,
EndPos: 4083,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 216,
EndLine: 216,
StartPos: 4081,
EndPos: 4083,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 216,
EndLine: 216,
StartPos: 4089,
EndPos: 4091,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 216,
EndLine: 216,
StartPos: 4089,
EndPos: 4091,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 217,
EndLine: 217,
StartPos: 4093,
EndPos: 4113,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssign{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 217,
EndLine: 217,
StartPos: 4093,
EndPos: 4112,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprList{
Node: ast.Node{
Position: &position.Position{
StartLine: 217,
EndLine: 217,
StartPos: 4093,
EndPos: 4107,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 217,
EndLine: 217,
StartPos: 4098,
EndPos: 4106,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ExprList{
Node: ast.Node{
Position: &position.Position{
StartLine: 217,
EndLine: 217,
StartPos: 4098,
EndPos: 4106,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 217,
EndLine: 217,
StartPos: 4103,
EndPos: 4105,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 217,
EndLine: 217,
StartPos: 4103,
EndPos: 4105,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 217,
EndLine: 217,
StartPos: 4103,
EndPos: 4105,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
},
},
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 217,
EndLine: 217,
StartPos: 4110,
EndPos: 4112,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 217,
EndLine: 217,
StartPos: 4110,
EndPos: 4112,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 219,
EndLine: 219,
StartPos: 4115,
EndPos: 4125,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprMethodCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 219,
EndLine: 219,
StartPos: 4115,
EndPos: 4124,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 219,
EndLine: 219,
StartPos: 4115,
EndPos: 4117,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 219,
EndLine: 219,
StartPos: 4115,
EndPos: 4117,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Method: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 219,
EndLine: 219,
StartPos: 4119,
EndPos: 4122,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 219,
EndLine: 219,
StartPos: 4122,
EndPos: 4124,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 220,
EndLine: 220,
StartPos: 4126,
EndPos: 4134,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprNew{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 220,
EndLine: 220,
StartPos: 4126,
EndPos: 4133,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 220,
EndLine: 220,
StartPos: 4130,
EndPos: 4133,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 220,
EndLine: 220,
StartPos: 4130,
EndPos: 4133,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 221,
EndLine: 221,
StartPos: 4135,
EndPos: 4155,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprNew{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 221,
EndLine: 221,
StartPos: 4135,
EndPos: 4154,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameRelative{
Node: ast.Node{
Position: &position.Position{
StartLine: 221,
EndLine: 221,
StartPos: 4139,
EndPos: 4152,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 221,
EndLine: 221,
StartPos: 4149,
EndPos: 4152,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 221,
EndLine: 221,
StartPos: 4152,
EndPos: 4154,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 222,
EndLine: 222,
StartPos: 4156,
EndPos: 4167,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprNew{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 222,
EndLine: 222,
StartPos: 4156,
EndPos: 4166,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameFullyQualified{
Node: ast.Node{
Position: &position.Position{
StartLine: 222,
EndLine: 222,
StartPos: 4160,
EndPos: 4164,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 222,
EndLine: 222,
StartPos: 4161,
EndPos: 4164,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 222,
EndLine: 222,
StartPos: 4164,
EndPos: 4166,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 223,
EndLine: 223,
StartPos: 4168,
EndPos: 4178,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprPrint{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 223,
EndLine: 223,
StartPos: 4168,
2020-08-09 20:40:55 +00:00
EndPos: 4177,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 223,
EndLine: 223,
StartPos: 4174,
EndPos: 4176,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 223,
EndLine: 223,
StartPos: 4174,
EndPos: 4176,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 224,
EndLine: 224,
StartPos: 4179,
EndPos: 4187,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 224,
EndLine: 224,
StartPos: 4179,
EndPos: 4186,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 224,
EndLine: 224,
StartPos: 4179,
EndPos: 4181,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 224,
EndLine: 224,
StartPos: 4179,
EndPos: 4181,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Property: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 224,
EndLine: 224,
StartPos: 4183,
EndPos: 4186,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 225,
EndLine: 225,
StartPos: 4188,
EndPos: 4199,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 225,
EndLine: 225,
StartPos: 4188,
EndPos: 4197,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 225,
EndLine: 225,
StartPos: 4188,
EndPos: 4195,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 225,
EndLine: 225,
StartPos: 4188,
EndPos: 4190,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 225,
EndLine: 225,
StartPos: 4188,
EndPos: 4190,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2020-05-13 17:18:53 +00:00
},
},
Property: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 225,
EndLine: 225,
StartPos: 4192,
EndPos: 4195,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 225,
EndLine: 225,
StartPos: 4196,
EndPos: 4197,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-02-14 19:02:57 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 226,
EndLine: 226,
StartPos: 4200,
EndPos: 4229,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 226,
EndLine: 226,
StartPos: 4200,
EndPos: 4227,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 226,
EndLine: 226,
StartPos: 4200,
EndPos: 4225,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprMethodCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 226,
EndLine: 226,
StartPos: 4200,
EndPos: 4219,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 226,
EndLine: 226,
StartPos: 4200,
EndPos: 4212,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 226,
EndLine: 226,
StartPos: 4200,
EndPos: 4207,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 226,
EndLine: 226,
StartPos: 4200,
EndPos: 4202,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 226,
EndLine: 226,
StartPos: 4200,
EndPos: 4202,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2020-05-13 17:18:53 +00:00
},
},
Property: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 226,
EndLine: 226,
StartPos: 4204,
EndPos: 4207,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Property: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 226,
EndLine: 226,
StartPos: 4209,
EndPos: 4212,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Method: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 226,
EndLine: 226,
StartPos: 4214,
EndPos: 4217,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("baz"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 226,
EndLine: 226,
StartPos: 4217,
EndPos: 4219,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
},
Property: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 226,
EndLine: 226,
StartPos: 4221,
EndPos: 4225,
2018-02-14 19:02:57 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("quux"),
2018-02-14 19:02:57 +00:00
},
2020-05-13 17:18:53 +00:00
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 226,
EndLine: 226,
StartPos: 4226,
EndPos: 4227,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-02-14 19:02:57 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 227,
EndLine: 227,
StartPos: 4230,
EndPos: 4246,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 227,
EndLine: 227,
StartPos: 4230,
EndPos: 4244,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 227,
EndLine: 227,
StartPos: 4230,
EndPos: 4241,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprMethodCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 227,
EndLine: 227,
StartPos: 4230,
EndPos: 4239,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 227,
EndLine: 227,
StartPos: 4230,
EndPos: 4232,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 227,
EndLine: 227,
StartPos: 4230,
EndPos: 4232,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Method: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 227,
EndLine: 227,
StartPos: 4234,
EndPos: 4237,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("foo"),
},
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 227,
EndLine: 227,
StartPos: 4237,
EndPos: 4239,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 227,
EndLine: 227,
StartPos: 4240,
EndPos: 4241,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 227,
EndLine: 227,
StartPos: 4243,
EndPos: 4244,
2018-06-24 07:19:44 +00:00
},
2018-02-14 19:02:57 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-02-14 19:02:57 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 228,
EndLine: 228,
StartPos: 4247,
EndPos: 4256,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprShellExec{
Node: ast.Node{
Position: &position.Position{
StartLine: 228,
EndLine: 228,
StartPos: 4247,
EndPos: 4255,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 228,
EndLine: 228,
StartPos: 4248,
EndPos: 4252,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("cmd "),
},
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 228,
EndLine: 228,
StartPos: 4252,
EndPos: 4254,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 228,
EndLine: 228,
StartPos: 4252,
EndPos: 4254,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 229,
EndLine: 229,
StartPos: 4257,
EndPos: 4263,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprShellExec{
Node: ast.Node{
Position: &position.Position{
StartLine: 229,
EndLine: 229,
StartPos: 4257,
EndPos: 4262,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 229,
EndLine: 229,
StartPos: 4258,
EndPos: 4261,
2020-05-13 17:18:53 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("cmd"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 10:30:41 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 230,
EndLine: 230,
StartPos: 4264,
EndPos: 4267,
2018-06-24 07:19:44 +00:00
},
2018-02-14 10:30:41 +00:00
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprShellExec{
Node: ast.Node{
Position: &position.Position{
StartLine: 230,
EndLine: 230,
StartPos: 4264,
EndPos: 4266,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 231,
EndLine: 231,
StartPos: 4268,
EndPos: 4271,
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprShortArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 231,
EndLine: 231,
StartPos: 4268,
EndPos: 4270,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 232,
EndLine: 232,
StartPos: 4272,
EndPos: 4276,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprShortArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 232,
EndLine: 232,
StartPos: 4272,
EndPos: 4275,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 232,
EndLine: 232,
StartPos: 4273,
EndPos: 4274,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 232,
EndLine: 232,
StartPos: 4273,
EndPos: 4274,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 233,
EndLine: 233,
StartPos: 4277,
EndPos: 4290,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprShortArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 233,
EndLine: 233,
StartPos: 4277,
EndPos: 4289,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 233,
EndLine: 233,
StartPos: 4278,
EndPos: 4282,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Key: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 233,
EndLine: 233,
StartPos: 4278,
EndPos: 4279,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Val: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 233,
EndLine: 233,
StartPos: 4281,
EndPos: 4282,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 233,
EndLine: 233,
StartPos: 4284,
EndPos: 4287,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ExprReference{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 233,
EndLine: 233,
StartPos: 4284,
EndPos: 4287,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 233,
EndLine: 233,
StartPos: 4285,
EndPos: 4287,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 233,
EndLine: 233,
StartPos: 4285,
EndPos: 4287,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.ExprArrayItem{},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 235,
EndLine: 235,
StartPos: 4292,
EndPos: 4303,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprStaticCall{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 235,
EndLine: 235,
StartPos: 4292,
EndPos: 4302,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 235,
EndLine: 235,
StartPos: 4292,
EndPos: 4295,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 235,
EndLine: 235,
StartPos: 4292,
EndPos: 4295,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-07-24 19:24:32 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Call: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 235,
EndLine: 235,
StartPos: 4297,
EndPos: 4300,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 235,
EndLine: 235,
StartPos: 4300,
EndPos: 4302,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 236,
EndLine: 236,
StartPos: 4304,
EndPos: 4325,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprStaticCall{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 236,
EndLine: 236,
StartPos: 4304,
EndPos: 4324,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameRelative{
Node: ast.Node{
Position: &position.Position{
StartLine: 236,
EndLine: 236,
StartPos: 4304,
EndPos: 4317,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 236,
EndLine: 236,
StartPos: 4314,
EndPos: 4317,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-07-24 19:24:32 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Call: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 236,
EndLine: 236,
StartPos: 4319,
EndPos: 4322,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 236,
EndLine: 236,
StartPos: 4322,
EndPos: 4324,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 237,
2018-06-30 21:38:31 +00:00
EndLine: 237,
StartPos: 4326,
EndPos: 4338,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprStaticCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 237,
2018-06-30 21:38:31 +00:00
EndLine: 237,
StartPos: 4326,
EndPos: 4337,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameFullyQualified{
Node: ast.Node{
Position: &position.Position{
StartLine: 237,
EndLine: 237,
StartPos: 4326,
EndPos: 4330,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 237,
EndLine: 237,
StartPos: 4327,
EndPos: 4330,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Call: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 237,
EndLine: 237,
StartPos: 4332,
EndPos: 4335,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 237,
EndLine: 237,
StartPos: 4335,
EndPos: 4337,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 238,
2018-06-30 21:38:31 +00:00
EndLine: 238,
StartPos: 4339,
EndPos: 4351,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprStaticCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 238,
2018-06-30 21:38:31 +00:00
EndLine: 238,
StartPos: 4339,
EndPos: 4350,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 238,
EndLine: 238,
StartPos: 4339,
EndPos: 4342,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 238,
EndLine: 238,
StartPos: 4339,
EndPos: 4342,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Call: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 238,
EndLine: 238,
StartPos: 4344,
EndPos: 4348,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 238,
EndLine: 238,
StartPos: 4344,
EndPos: 4348,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$bar"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 238,
EndLine: 238,
StartPos: 4348,
EndPos: 4350,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 239,
2018-06-30 21:38:31 +00:00
EndLine: 239,
StartPos: 4352,
EndPos: 4365,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprStaticCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 239,
2018-06-30 21:38:31 +00:00
EndLine: 239,
StartPos: 4352,
EndPos: 4364,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 239,
EndLine: 239,
StartPos: 4352,
EndPos: 4356,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 239,
EndLine: 239,
StartPos: 4352,
EndPos: 4356,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$foo"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Call: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 239,
EndLine: 239,
StartPos: 4358,
EndPos: 4362,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 239,
EndLine: 239,
StartPos: 4358,
EndPos: 4362,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$bar"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 239,
EndLine: 239,
StartPos: 4362,
EndPos: 4364,
2020-05-13 17:18:53 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 240,
2018-06-30 21:38:31 +00:00
EndLine: 240,
StartPos: 4366,
EndPos: 4376,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprStaticPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 240,
2018-06-30 21:38:31 +00:00
EndLine: 240,
StartPos: 4366,
EndPos: 4375,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 240,
EndLine: 240,
StartPos: 4366,
EndPos: 4369,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 240,
EndLine: 240,
StartPos: 4366,
EndPos: 4369,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Property: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 240,
2018-06-30 21:38:31 +00:00
EndLine: 240,
StartPos: 4371,
EndPos: 4375,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 240,
EndLine: 240,
StartPos: 4371,
EndPos: 4375,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$bar"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-13 17:38:37 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 241,
2018-06-30 21:38:31 +00:00
EndLine: 241,
StartPos: 4377,
EndPos: 4397,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprStaticPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 241,
2018-06-30 21:38:31 +00:00
EndLine: 241,
StartPos: 4377,
EndPos: 4396,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameRelative{
Node: ast.Node{
Position: &position.Position{
StartLine: 241,
EndLine: 241,
StartPos: 4377,
EndPos: 4390,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 241,
EndLine: 241,
StartPos: 4387,
EndPos: 4390,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Property: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 241,
2018-06-30 21:38:31 +00:00
EndLine: 241,
StartPos: 4392,
EndPos: 4396,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 241,
EndLine: 241,
StartPos: 4392,
EndPos: 4396,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$bar"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-13 17:38:37 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 242,
2018-06-30 21:38:31 +00:00
EndLine: 242,
StartPos: 4398,
EndPos: 4409,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprStaticPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 242,
2018-06-30 21:38:31 +00:00
EndLine: 242,
StartPos: 4398,
EndPos: 4408,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameFullyQualified{
Node: ast.Node{
Position: &position.Position{
StartLine: 242,
EndLine: 242,
StartPos: 4398,
EndPos: 4402,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 242,
EndLine: 242,
StartPos: 4399,
EndPos: 4402,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Property: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 242,
2018-06-30 21:38:31 +00:00
EndLine: 242,
StartPos: 4404,
EndPos: 4408,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 242,
EndLine: 242,
StartPos: 4404,
EndPos: 4408,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$bar"),
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 243,
2018-06-30 21:38:31 +00:00
EndLine: 243,
StartPos: 4410,
EndPos: 4423,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprTernary{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 243,
2018-06-30 21:38:31 +00:00
EndLine: 243,
StartPos: 4410,
EndPos: 4422,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Condition: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 243,
EndLine: 243,
StartPos: 4410,
EndPos: 4412,
2018-07-24 19:24:32 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 243,
EndLine: 243,
StartPos: 4410,
EndPos: 4412,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
IfTrue: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 243,
EndLine: 243,
StartPos: 4415,
EndPos: 4417,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 243,
EndLine: 243,
StartPos: 4415,
EndPos: 4417,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
IfFalse: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 243,
2018-06-30 21:38:31 +00:00
EndLine: 243,
StartPos: 4420,
EndPos: 4422,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 243,
EndLine: 243,
StartPos: 4420,
EndPos: 4422,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$c"),
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 244,
2018-06-30 21:38:31 +00:00
EndLine: 244,
StartPos: 4424,
EndPos: 4434,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprTernary{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 244,
2018-06-30 21:38:31 +00:00
EndLine: 244,
StartPos: 4424,
EndPos: 4433,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Condition: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 244,
EndLine: 244,
StartPos: 4424,
EndPos: 4426,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 244,
EndLine: 244,
StartPos: 4424,
EndPos: 4426,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
IfFalse: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 244,
2018-06-30 21:38:31 +00:00
EndLine: 244,
StartPos: 4431,
EndPos: 4433,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 244,
EndLine: 244,
StartPos: 4431,
EndPos: 4433,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$c"),
2018-02-10 22:11:56 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 245,
2018-06-30 21:38:31 +00:00
EndLine: 245,
StartPos: 4435,
EndPos: 4458,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprTernary{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 245,
2018-06-30 21:38:31 +00:00
EndLine: 245,
StartPos: 4435,
EndPos: 4457,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Condition: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 245,
2018-06-30 21:38:31 +00:00
EndLine: 245,
StartPos: 4435,
EndPos: 4437,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 245,
EndLine: 245,
StartPos: 4435,
EndPos: 4437,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
IfTrue: &ast.ExprTernary{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 245,
2018-06-30 21:38:31 +00:00
EndLine: 245,
StartPos: 4440,
EndPos: 4452,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Condition: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 245,
EndLine: 245,
StartPos: 4440,
EndPos: 4442,
2018-07-24 19:24:32 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 245,
EndLine: 245,
StartPos: 4440,
EndPos: 4442,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
IfTrue: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 245,
EndLine: 245,
StartPos: 4445,
EndPos: 4447,
2018-07-24 19:24:32 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 245,
EndLine: 245,
StartPos: 4445,
EndPos: 4447,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$c"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
IfFalse: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 245,
EndLine: 245,
StartPos: 4450,
EndPos: 4452,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 245,
EndLine: 245,
StartPos: 4450,
EndPos: 4452,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$d"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
IfFalse: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 245,
2018-06-30 21:38:31 +00:00
EndLine: 245,
StartPos: 4455,
EndPos: 4457,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 245,
EndLine: 245,
StartPos: 4455,
EndPos: 4457,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$e"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 246,
2018-06-30 21:38:31 +00:00
EndLine: 246,
StartPos: 4459,
EndPos: 4482,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprTernary{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 246,
2018-06-30 21:38:31 +00:00
EndLine: 246,
StartPos: 4459,
EndPos: 4481,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Condition: &ast.ExprTernary{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 246,
EndLine: 246,
StartPos: 4459,
EndPos: 4471,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Condition: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 246,
EndLine: 246,
StartPos: 4459,
EndPos: 4461,
2018-07-24 19:24:32 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 246,
EndLine: 246,
StartPos: 4459,
EndPos: 4461,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
IfTrue: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 246,
EndLine: 246,
StartPos: 4464,
EndPos: 4466,
2018-07-24 19:24:32 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 246,
EndLine: 246,
StartPos: 4464,
EndPos: 4466,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
IfFalse: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 246,
EndLine: 246,
StartPos: 4469,
EndPos: 4471,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 246,
EndLine: 246,
StartPos: 4469,
EndPos: 4471,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$c"),
2018-07-24 19:24:32 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
IfTrue: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 246,
2018-06-30 21:38:31 +00:00
EndLine: 246,
StartPos: 4474,
EndPos: 4476,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 246,
EndLine: 246,
StartPos: 4474,
EndPos: 4476,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$d"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
IfFalse: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 246,
2018-06-30 21:38:31 +00:00
EndLine: 246,
StartPos: 4479,
EndPos: 4481,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 246,
EndLine: 246,
StartPos: 4479,
EndPos: 4481,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$e"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 247,
2018-06-30 21:38:31 +00:00
EndLine: 247,
StartPos: 4483,
EndPos: 4487,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprUnaryMinus{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 247,
2018-06-30 21:38:31 +00:00
EndLine: 247,
StartPos: 4483,
EndPos: 4486,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 247,
2018-06-30 21:38:31 +00:00
EndLine: 247,
StartPos: 4484,
EndPos: 4486,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 247,
EndLine: 247,
StartPos: 4484,
EndPos: 4486,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 248,
2018-06-30 21:38:31 +00:00
EndLine: 248,
StartPos: 4488,
EndPos: 4492,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprUnaryPlus{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 248,
2018-06-30 21:38:31 +00:00
EndLine: 248,
StartPos: 4488,
EndPos: 4491,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 248,
2018-06-30 21:38:31 +00:00
EndLine: 248,
StartPos: 4489,
EndPos: 4491,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 248,
EndLine: 248,
StartPos: 4489,
EndPos: 4491,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2018-02-10 22:11:56 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 249,
2018-06-30 21:38:31 +00:00
EndLine: 249,
StartPos: 4493,
EndPos: 4497,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 249,
2018-06-30 21:38:31 +00:00
EndLine: 249,
StartPos: 4493,
EndPos: 4496,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 249,
2018-06-30 21:38:31 +00:00
EndLine: 249,
StartPos: 4494,
EndPos: 4496,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 249,
EndLine: 249,
StartPos: 4494,
EndPos: 4496,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 250,
2018-06-30 21:38:31 +00:00
EndLine: 250,
StartPos: 4498,
EndPos: 4503,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 250,
2018-06-30 21:38:31 +00:00
EndLine: 250,
StartPos: 4498,
EndPos: 4502,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 250,
2018-06-30 21:38:31 +00:00
EndLine: 250,
StartPos: 4499,
EndPos: 4502,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 250,
EndLine: 250,
StartPos: 4500,
EndPos: 4502,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 250,
EndLine: 250,
StartPos: 4500,
EndPos: 4502,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 251,
2018-06-30 21:38:31 +00:00
EndLine: 251,
StartPos: 4504,
EndPos: 4510,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprYield{
Node: ast.Node{
Position: &position.Position{
StartLine: 251,
EndLine: 251,
StartPos: 4504,
EndPos: 4509,
2020-05-13 17:18:53 +00:00
},
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 252,
2018-06-30 21:38:31 +00:00
EndLine: 252,
StartPos: 4511,
EndPos: 4520,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprYield{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 252,
2018-06-30 21:38:31 +00:00
EndLine: 252,
StartPos: 4511,
EndPos: 4519,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 252,
2018-06-30 21:38:31 +00:00
EndLine: 252,
StartPos: 4517,
EndPos: 4519,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 252,
EndLine: 252,
StartPos: 4517,
EndPos: 4519,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-14 19:02:57 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 253,
2018-06-30 21:38:31 +00:00
EndLine: 253,
StartPos: 4521,
EndPos: 4536,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprYield{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 253,
EndLine: 253,
StartPos: 4521,
EndPos: 4535,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Key: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 253,
EndLine: 253,
StartPos: 4527,
EndPos: 4529,
2018-07-24 19:24:32 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 253,
EndLine: 253,
StartPos: 4527,
EndPos: 4529,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 253,
EndLine: 253,
StartPos: 4533,
EndPos: 4535,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 253,
EndLine: 253,
StartPos: 4533,
EndPos: 4535,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-07-24 19:24:32 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 254,
2018-06-30 21:38:31 +00:00
EndLine: 254,
StartPos: 4537,
EndPos: 4554,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprYield{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 254,
2018-06-30 21:38:31 +00:00
EndLine: 254,
StartPos: 4537,
EndPos: 4553,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: &ast.ExprClassConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 254,
2018-06-30 21:38:31 +00:00
EndLine: 254,
StartPos: 4543,
EndPos: 4553,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 254,
EndLine: 254,
StartPos: 4543,
EndPos: 4546,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 254,
EndLine: 254,
StartPos: 4543,
EndPos: 4546,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-07-24 19:24:32 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
ConstantName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 254,
EndLine: 254,
StartPos: 4548,
EndPos: 4553,
2020-05-13 17:18:53 +00:00
},
2018-02-14 15:28:20 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("class"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 255,
2018-06-30 21:38:31 +00:00
EndLine: 255,
StartPos: 4555,
EndPos: 4578,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprYield{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 255,
2018-06-30 21:38:31 +00:00
EndLine: 255,
StartPos: 4555,
EndPos: 4577,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Key: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 255,
2018-06-30 21:38:31 +00:00
EndLine: 255,
StartPos: 4561,
EndPos: 4563,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 255,
EndLine: 255,
StartPos: 4561,
EndPos: 4563,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: &ast.ExprClassConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 255,
2018-06-30 21:38:31 +00:00
EndLine: 255,
StartPos: 4567,
EndPos: 4577,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 255,
EndLine: 255,
StartPos: 4567,
EndPos: 4570,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 255,
EndLine: 255,
StartPos: 4567,
EndPos: 4570,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
ConstantName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 255,
EndLine: 255,
StartPos: 4572,
EndPos: 4577,
2020-05-13 17:18:53 +00:00
},
2018-02-14 15:28:20 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("class"),
2018-02-14 15:28:20 +00:00
},
},
2018-02-13 15:42:00 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 257,
2018-06-30 21:38:31 +00:00
EndLine: 257,
StartPos: 4580,
EndPos: 4590,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprCastArray{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 257,
2018-06-30 21:38:31 +00:00
EndLine: 257,
StartPos: 4580,
EndPos: 4589,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 257,
2018-06-30 21:38:31 +00:00
EndLine: 257,
StartPos: 4587,
EndPos: 4589,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 257,
EndLine: 257,
StartPos: 4587,
EndPos: 4589,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 258,
EndLine: 258,
StartPos: 4591,
EndPos: 4603,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprCastBool{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 258,
EndLine: 258,
StartPos: 4591,
EndPos: 4602,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 258,
EndLine: 258,
StartPos: 4600,
EndPos: 4602,
2018-02-14 15:28:20 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 258,
EndLine: 258,
StartPos: 4600,
EndPos: 4602,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-02-14 15:28:20 +00:00
},
},
2018-02-13 15:42:00 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 259,
2018-06-30 21:38:31 +00:00
EndLine: 259,
StartPos: 4604,
EndPos: 4613,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprCastBool{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 259,
2018-06-30 21:38:31 +00:00
EndLine: 259,
StartPos: 4604,
EndPos: 4612,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 259,
2018-06-30 21:38:31 +00:00
EndLine: 259,
StartPos: 4610,
EndPos: 4612,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 259,
EndLine: 259,
StartPos: 4610,
EndPos: 4612,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 260,
2018-06-30 21:38:31 +00:00
EndLine: 260,
StartPos: 4614,
EndPos: 4625,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprCastDouble{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 260,
2018-06-30 21:38:31 +00:00
EndLine: 260,
StartPos: 4614,
EndPos: 4624,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 260,
2018-06-30 21:38:31 +00:00
EndLine: 260,
StartPos: 4622,
EndPos: 4624,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 260,
EndLine: 260,
StartPos: 4622,
EndPos: 4624,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 261,
2018-06-30 21:38:31 +00:00
EndLine: 261,
StartPos: 4626,
EndPos: 4636,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprCastDouble{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 261,
2018-06-30 21:38:31 +00:00
EndLine: 261,
StartPos: 4626,
EndPos: 4635,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 261,
2018-06-30 21:38:31 +00:00
EndLine: 261,
StartPos: 4633,
EndPos: 4635,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 261,
EndLine: 261,
StartPos: 4633,
EndPos: 4635,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 262,
2018-06-30 21:38:31 +00:00
EndLine: 262,
StartPos: 4637,
EndPos: 4649,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprCastInt{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 262,
2018-06-30 21:38:31 +00:00
EndLine: 262,
StartPos: 4637,
EndPos: 4648,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 262,
2018-06-30 21:38:31 +00:00
EndLine: 262,
StartPos: 4646,
EndPos: 4648,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 262,
EndLine: 262,
StartPos: 4646,
EndPos: 4648,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 263,
2018-06-30 21:38:31 +00:00
EndLine: 263,
StartPos: 4650,
EndPos: 4658,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprCastInt{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 263,
2018-06-30 21:38:31 +00:00
EndLine: 263,
StartPos: 4650,
EndPos: 4657,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 263,
2018-06-30 21:38:31 +00:00
EndLine: 263,
StartPos: 4655,
EndPos: 4657,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 263,
EndLine: 263,
StartPos: 4655,
EndPos: 4657,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 264,
2018-06-30 21:38:31 +00:00
EndLine: 264,
StartPos: 4659,
EndPos: 4670,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprCastObject{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 264,
2018-06-30 21:38:31 +00:00
EndLine: 264,
StartPos: 4659,
EndPos: 4669,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 264,
2018-06-30 21:38:31 +00:00
EndLine: 264,
StartPos: 4667,
EndPos: 4669,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 264,
EndLine: 264,
StartPos: 4667,
EndPos: 4669,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 265,
2018-06-30 21:38:31 +00:00
EndLine: 265,
StartPos: 4671,
EndPos: 4682,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprCastString{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 265,
2018-06-30 21:38:31 +00:00
EndLine: 265,
StartPos: 4671,
EndPos: 4681,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 265,
2018-06-30 21:38:31 +00:00
EndLine: 265,
StartPos: 4679,
EndPos: 4681,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 265,
EndLine: 265,
StartPos: 4679,
EndPos: 4681,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 266,
2018-06-30 21:38:31 +00:00
EndLine: 266,
StartPos: 4683,
EndPos: 4693,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprCastUnset{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 266,
2018-06-30 21:38:31 +00:00
EndLine: 266,
StartPos: 4683,
EndPos: 4692,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 266,
2018-06-30 21:38:31 +00:00
EndLine: 266,
StartPos: 4690,
EndPos: 4692,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 266,
EndLine: 266,
StartPos: 4690,
EndPos: 4692,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 268,
EndLine: 268,
StartPos: 4695,
EndPos: 4703,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryBitwiseAnd{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 268,
EndLine: 268,
StartPos: 4695,
EndPos: 4702,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 268,
EndLine: 268,
StartPos: 4695,
EndPos: 4697,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 268,
EndLine: 268,
StartPos: 4695,
EndPos: 4697,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 268,
EndLine: 268,
StartPos: 4700,
EndPos: 4702,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 268,
EndLine: 268,
StartPos: 4700,
EndPos: 4702,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-07-24 19:24:32 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 269,
EndLine: 269,
StartPos: 4704,
EndPos: 4712,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryBitwiseOr{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 269,
EndLine: 269,
StartPos: 4704,
EndPos: 4711,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 269,
EndLine: 269,
StartPos: 4704,
EndPos: 4706,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 269,
EndLine: 269,
StartPos: 4704,
EndPos: 4706,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 269,
EndLine: 269,
StartPos: 4709,
EndPos: 4711,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 269,
EndLine: 269,
StartPos: 4709,
EndPos: 4711,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-07-24 19:24:32 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 270,
2018-06-30 21:38:31 +00:00
EndLine: 270,
StartPos: 4713,
EndPos: 4721,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryBitwiseXor{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 270,
2018-06-30 21:38:31 +00:00
EndLine: 270,
StartPos: 4713,
EndPos: 4720,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 270,
2018-06-30 21:38:31 +00:00
EndLine: 270,
StartPos: 4713,
EndPos: 4715,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 270,
EndLine: 270,
StartPos: 4713,
EndPos: 4715,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 270,
2018-06-30 21:38:31 +00:00
EndLine: 270,
StartPos: 4718,
EndPos: 4720,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 270,
EndLine: 270,
StartPos: 4718,
EndPos: 4720,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 271,
2018-06-30 21:38:31 +00:00
EndLine: 271,
StartPos: 4722,
EndPos: 4731,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryBooleanAnd{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 271,
2018-06-30 21:38:31 +00:00
EndLine: 271,
StartPos: 4722,
EndPos: 4730,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 271,
2018-06-30 21:38:31 +00:00
EndLine: 271,
StartPos: 4722,
EndPos: 4724,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 271,
EndLine: 271,
StartPos: 4722,
EndPos: 4724,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 271,
2018-06-30 21:38:31 +00:00
EndLine: 271,
StartPos: 4728,
EndPos: 4730,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 271,
EndLine: 271,
StartPos: 4728,
EndPos: 4730,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 272,
2018-06-30 21:38:31 +00:00
EndLine: 272,
StartPos: 4732,
EndPos: 4741,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryBooleanOr{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 272,
2018-06-30 21:38:31 +00:00
EndLine: 272,
StartPos: 4732,
EndPos: 4740,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 272,
2018-06-30 21:38:31 +00:00
EndLine: 272,
StartPos: 4732,
EndPos: 4734,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 272,
EndLine: 272,
StartPos: 4732,
EndPos: 4734,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 272,
2018-06-30 21:38:31 +00:00
EndLine: 272,
StartPos: 4738,
EndPos: 4740,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 272,
EndLine: 272,
StartPos: 4738,
EndPos: 4740,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 273,
2018-06-30 21:38:31 +00:00
EndLine: 273,
StartPos: 4742,
EndPos: 4750,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryConcat{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 273,
2018-06-30 21:38:31 +00:00
EndLine: 273,
StartPos: 4742,
EndPos: 4749,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 273,
2018-06-30 21:38:31 +00:00
EndLine: 273,
StartPos: 4742,
EndPos: 4744,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 273,
EndLine: 273,
StartPos: 4742,
EndPos: 4744,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 273,
2018-06-30 21:38:31 +00:00
EndLine: 273,
StartPos: 4747,
EndPos: 4749,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 273,
EndLine: 273,
StartPos: 4747,
EndPos: 4749,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 274,
2018-06-30 21:38:31 +00:00
EndLine: 274,
StartPos: 4751,
EndPos: 4759,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryDiv{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 274,
2018-06-30 21:38:31 +00:00
EndLine: 274,
StartPos: 4751,
EndPos: 4758,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 274,
2018-06-30 21:38:31 +00:00
EndLine: 274,
StartPos: 4751,
EndPos: 4753,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 274,
EndLine: 274,
StartPos: 4751,
EndPos: 4753,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 274,
2018-06-30 21:38:31 +00:00
EndLine: 274,
StartPos: 4756,
EndPos: 4758,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 274,
EndLine: 274,
StartPos: 4756,
EndPos: 4758,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 275,
2018-06-30 21:38:31 +00:00
EndLine: 275,
StartPos: 4760,
EndPos: 4769,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryEqual{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 275,
2018-06-30 21:38:31 +00:00
EndLine: 275,
StartPos: 4760,
EndPos: 4768,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 275,
2018-06-30 21:38:31 +00:00
EndLine: 275,
StartPos: 4760,
EndPos: 4762,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 275,
EndLine: 275,
StartPos: 4760,
EndPos: 4762,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 275,
2018-06-30 21:38:31 +00:00
EndLine: 275,
StartPos: 4766,
EndPos: 4768,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 275,
EndLine: 275,
StartPos: 4766,
EndPos: 4768,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 276,
2018-06-30 21:38:31 +00:00
EndLine: 276,
StartPos: 4770,
EndPos: 4779,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryGreaterOrEqual{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 276,
2018-06-30 21:38:31 +00:00
EndLine: 276,
StartPos: 4770,
EndPos: 4778,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 276,
2018-06-30 21:38:31 +00:00
EndLine: 276,
StartPos: 4770,
EndPos: 4772,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 276,
EndLine: 276,
StartPos: 4770,
EndPos: 4772,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 276,
2018-06-30 21:38:31 +00:00
EndLine: 276,
StartPos: 4776,
EndPos: 4778,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 276,
EndLine: 276,
StartPos: 4776,
EndPos: 4778,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 277,
2018-06-30 21:38:31 +00:00
EndLine: 277,
StartPos: 4780,
EndPos: 4788,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryGreater{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 277,
2018-06-30 21:38:31 +00:00
EndLine: 277,
StartPos: 4780,
EndPos: 4787,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 277,
2018-06-30 21:38:31 +00:00
EndLine: 277,
StartPos: 4780,
EndPos: 4782,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 277,
EndLine: 277,
StartPos: 4780,
EndPos: 4782,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 277,
2018-06-30 21:38:31 +00:00
EndLine: 277,
StartPos: 4785,
EndPos: 4787,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 277,
EndLine: 277,
StartPos: 4785,
EndPos: 4787,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 278,
2018-06-30 21:38:31 +00:00
EndLine: 278,
StartPos: 4789,
EndPos: 4799,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryIdentical{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 278,
2018-06-30 21:38:31 +00:00
EndLine: 278,
StartPos: 4789,
EndPos: 4798,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 278,
2018-06-30 21:38:31 +00:00
EndLine: 278,
StartPos: 4789,
EndPos: 4791,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 278,
EndLine: 278,
StartPos: 4789,
EndPos: 4791,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 278,
2018-06-30 21:38:31 +00:00
EndLine: 278,
StartPos: 4796,
EndPos: 4798,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 278,
EndLine: 278,
StartPos: 4796,
EndPos: 4798,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 279,
2018-06-30 21:38:31 +00:00
EndLine: 279,
StartPos: 4800,
EndPos: 4810,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryLogicalAnd{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 279,
2018-06-30 21:38:31 +00:00
EndLine: 279,
StartPos: 4800,
EndPos: 4809,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 279,
2018-06-30 21:38:31 +00:00
EndLine: 279,
StartPos: 4800,
EndPos: 4802,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 279,
EndLine: 279,
StartPos: 4800,
EndPos: 4802,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 279,
2018-06-30 21:38:31 +00:00
EndLine: 279,
StartPos: 4807,
EndPos: 4809,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 279,
EndLine: 279,
StartPos: 4807,
EndPos: 4809,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 280,
2018-06-30 21:38:31 +00:00
EndLine: 280,
StartPos: 4811,
EndPos: 4820,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryLogicalOr{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 280,
2018-06-30 21:38:31 +00:00
EndLine: 280,
StartPos: 4811,
EndPos: 4819,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 280,
2018-06-30 21:38:31 +00:00
EndLine: 280,
StartPos: 4811,
EndPos: 4813,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 280,
EndLine: 280,
StartPos: 4811,
EndPos: 4813,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 280,
2018-06-30 21:38:31 +00:00
EndLine: 280,
StartPos: 4817,
EndPos: 4819,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 280,
EndLine: 280,
StartPos: 4817,
EndPos: 4819,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 281,
2018-06-30 21:38:31 +00:00
EndLine: 281,
StartPos: 4821,
EndPos: 4831,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryLogicalXor{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 281,
2018-06-30 21:38:31 +00:00
EndLine: 281,
StartPos: 4821,
EndPos: 4830,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 281,
2018-06-30 21:38:31 +00:00
EndLine: 281,
StartPos: 4821,
EndPos: 4823,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 281,
EndLine: 281,
StartPos: 4821,
EndPos: 4823,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 281,
2018-06-30 21:38:31 +00:00
EndLine: 281,
StartPos: 4828,
EndPos: 4830,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 281,
EndLine: 281,
StartPos: 4828,
EndPos: 4830,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 282,
2018-06-30 21:38:31 +00:00
EndLine: 282,
StartPos: 4832,
EndPos: 4840,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryMinus{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 282,
2018-06-30 21:38:31 +00:00
EndLine: 282,
StartPos: 4832,
EndPos: 4839,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 282,
2018-06-30 21:38:31 +00:00
EndLine: 282,
StartPos: 4832,
EndPos: 4834,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 282,
EndLine: 282,
StartPos: 4832,
EndPos: 4834,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 282,
2018-06-30 21:38:31 +00:00
EndLine: 282,
StartPos: 4837,
EndPos: 4839,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 282,
EndLine: 282,
StartPos: 4837,
EndPos: 4839,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 283,
2018-06-30 21:38:31 +00:00
EndLine: 283,
StartPos: 4841,
EndPos: 4849,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryMod{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 283,
2018-06-30 21:38:31 +00:00
EndLine: 283,
StartPos: 4841,
EndPos: 4848,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 283,
2018-06-30 21:38:31 +00:00
EndLine: 283,
StartPos: 4841,
EndPos: 4843,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 283,
EndLine: 283,
StartPos: 4841,
EndPos: 4843,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 283,
2018-06-30 21:38:31 +00:00
EndLine: 283,
StartPos: 4846,
EndPos: 4848,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 283,
EndLine: 283,
StartPos: 4846,
EndPos: 4848,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 284,
2018-06-30 21:38:31 +00:00
EndLine: 284,
StartPos: 4850,
EndPos: 4858,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryMul{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 284,
2018-06-30 21:38:31 +00:00
EndLine: 284,
StartPos: 4850,
EndPos: 4857,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 284,
2018-06-30 21:38:31 +00:00
EndLine: 284,
StartPos: 4850,
EndPos: 4852,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 284,
EndLine: 284,
StartPos: 4850,
EndPos: 4852,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 284,
2018-06-30 21:38:31 +00:00
EndLine: 284,
StartPos: 4855,
EndPos: 4857,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 284,
EndLine: 284,
StartPos: 4855,
EndPos: 4857,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 285,
2018-06-30 21:38:31 +00:00
EndLine: 285,
StartPos: 4859,
EndPos: 4868,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryNotEqual{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 285,
2018-06-30 21:38:31 +00:00
EndLine: 285,
StartPos: 4859,
EndPos: 4867,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 285,
2018-06-30 21:38:31 +00:00
EndLine: 285,
StartPos: 4859,
EndPos: 4861,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 285,
EndLine: 285,
StartPos: 4859,
EndPos: 4861,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 285,
2018-06-30 21:38:31 +00:00
EndLine: 285,
StartPos: 4865,
EndPos: 4867,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 285,
EndLine: 285,
StartPos: 4865,
EndPos: 4867,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 286,
2018-06-30 21:38:31 +00:00
EndLine: 286,
StartPos: 4869,
EndPos: 4879,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryNotIdentical{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 286,
2018-06-30 21:38:31 +00:00
EndLine: 286,
StartPos: 4869,
EndPos: 4878,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 286,
2018-06-30 21:38:31 +00:00
EndLine: 286,
StartPos: 4869,
EndPos: 4871,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 286,
EndLine: 286,
StartPos: 4869,
EndPos: 4871,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 286,
2018-06-30 21:38:31 +00:00
EndLine: 286,
StartPos: 4876,
EndPos: 4878,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 286,
EndLine: 286,
StartPos: 4876,
EndPos: 4878,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 287,
2018-06-30 21:38:31 +00:00
EndLine: 287,
StartPos: 4880,
EndPos: 4888,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryPlus{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 287,
2018-06-30 21:38:31 +00:00
EndLine: 287,
StartPos: 4880,
EndPos: 4887,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 287,
2018-06-30 21:38:31 +00:00
EndLine: 287,
StartPos: 4880,
EndPos: 4882,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 287,
EndLine: 287,
StartPos: 4880,
EndPos: 4882,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 287,
2018-06-30 21:38:31 +00:00
EndLine: 287,
StartPos: 4885,
EndPos: 4887,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 287,
EndLine: 287,
StartPos: 4885,
EndPos: 4887,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 288,
2018-06-30 21:38:31 +00:00
EndLine: 288,
StartPos: 4889,
EndPos: 4898,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryPow{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 288,
2018-06-30 21:38:31 +00:00
EndLine: 288,
StartPos: 4889,
EndPos: 4897,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 288,
2018-06-30 21:38:31 +00:00
EndLine: 288,
StartPos: 4889,
EndPos: 4891,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 288,
EndLine: 288,
StartPos: 4889,
EndPos: 4891,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 288,
2018-06-30 21:38:31 +00:00
EndLine: 288,
StartPos: 4895,
EndPos: 4897,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 288,
EndLine: 288,
StartPos: 4895,
EndPos: 4897,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 289,
2018-06-30 21:38:31 +00:00
EndLine: 289,
StartPos: 4899,
EndPos: 4908,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryShiftLeft{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 289,
2018-06-30 21:38:31 +00:00
EndLine: 289,
StartPos: 4899,
EndPos: 4907,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 289,
2018-06-30 21:38:31 +00:00
EndLine: 289,
StartPos: 4899,
EndPos: 4901,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 289,
EndLine: 289,
StartPos: 4899,
EndPos: 4901,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 289,
2018-06-30 21:38:31 +00:00
EndLine: 289,
StartPos: 4905,
EndPos: 4907,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 289,
EndLine: 289,
StartPos: 4905,
EndPos: 4907,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 290,
2018-06-30 21:38:31 +00:00
EndLine: 290,
StartPos: 4909,
EndPos: 4918,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryShiftRight{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 290,
2018-06-30 21:38:31 +00:00
EndLine: 290,
StartPos: 4909,
EndPos: 4917,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 290,
2018-06-30 21:38:31 +00:00
EndLine: 290,
StartPos: 4909,
EndPos: 4911,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 290,
EndLine: 290,
StartPos: 4909,
EndPos: 4911,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 290,
2018-06-30 21:38:31 +00:00
EndLine: 290,
StartPos: 4915,
EndPos: 4917,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 290,
EndLine: 290,
StartPos: 4915,
EndPos: 4917,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 291,
2018-06-30 21:38:31 +00:00
EndLine: 291,
StartPos: 4919,
EndPos: 4928,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinarySmallerOrEqual{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 291,
2018-06-30 21:38:31 +00:00
EndLine: 291,
StartPos: 4919,
EndPos: 4927,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 291,
2018-06-30 21:38:31 +00:00
EndLine: 291,
StartPos: 4919,
EndPos: 4921,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 291,
EndLine: 291,
StartPos: 4919,
EndPos: 4921,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 291,
2018-06-30 21:38:31 +00:00
EndLine: 291,
StartPos: 4925,
EndPos: 4927,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 291,
EndLine: 291,
StartPos: 4925,
EndPos: 4927,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 292,
2018-06-30 21:38:31 +00:00
EndLine: 292,
StartPos: 4929,
EndPos: 4937,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinarySmaller{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 292,
2018-06-30 21:38:31 +00:00
EndLine: 292,
StartPos: 4929,
EndPos: 4936,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 292,
2018-06-30 21:38:31 +00:00
EndLine: 292,
StartPos: 4929,
EndPos: 4931,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 292,
EndLine: 292,
StartPos: 4929,
EndPos: 4931,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Right: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 292,
2018-06-30 21:38:31 +00:00
EndLine: 292,
StartPos: 4934,
EndPos: 4936,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 292,
EndLine: 292,
StartPos: 4934,
EndPos: 4936,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 294,
EndLine: 294,
StartPos: 4939,
EndPos: 4948,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignReference{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 294,
EndLine: 294,
StartPos: 4939,
EndPos: 4947,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 294,
EndLine: 294,
StartPos: 4939,
EndPos: 4941,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 294,
EndLine: 294,
StartPos: 4939,
EndPos: 4941,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 294,
EndLine: 294,
StartPos: 4945,
EndPos: 4947,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 294,
EndLine: 294,
StartPos: 4945,
EndPos: 4947,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 295,
EndLine: 295,
StartPos: 4949,
EndPos: 4963,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignReference{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 295,
EndLine: 295,
StartPos: 4949,
EndPos: 4962,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 295,
EndLine: 295,
StartPos: 4949,
EndPos: 4951,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 295,
EndLine: 295,
StartPos: 4949,
EndPos: 4951,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprNew{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 295,
EndLine: 295,
StartPos: 4955,
EndPos: 4962,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 295,
EndLine: 295,
StartPos: 4959,
EndPos: 4962,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 295,
EndLine: 295,
StartPos: 4959,
EndPos: 4962,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-07-24 19:24:32 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 296,
2018-06-30 21:38:31 +00:00
EndLine: 296,
StartPos: 4964,
EndPos: 4982,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignReference{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 296,
2018-06-30 21:38:31 +00:00
EndLine: 296,
StartPos: 4964,
EndPos: 4981,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 296,
2018-06-30 21:38:31 +00:00
EndLine: 296,
StartPos: 4964,
EndPos: 4966,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 296,
EndLine: 296,
StartPos: 4964,
EndPos: 4966,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprNew{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 296,
2018-06-30 21:38:31 +00:00
EndLine: 296,
StartPos: 4970,
EndPos: 4981,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 296,
EndLine: 296,
StartPos: 4974,
EndPos: 4977,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 296,
EndLine: 296,
StartPos: 4974,
EndPos: 4977,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-07-24 19:24:32 +00:00
},
2018-02-13 11:38:57 +00:00
},
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 296,
EndLine: 296,
StartPos: 4977,
EndPos: 4981,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Arguments: []ast.Vertex{
&ast.Argument{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 296,
EndLine: 296,
StartPos: 4978,
EndPos: 4980,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 296,
EndLine: 296,
StartPos: 4978,
EndPos: 4980,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 296,
EndLine: 296,
StartPos: 4978,
EndPos: 4980,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-07-24 19:24:32 +00:00
},
},
2018-04-29 16:58:49 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 297,
2018-06-30 21:38:31 +00:00
EndLine: 297,
StartPos: 4983,
EndPos: 4991,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssign{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 297,
2018-06-30 21:38:31 +00:00
EndLine: 297,
StartPos: 4983,
EndPos: 4990,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 297,
2018-06-30 21:38:31 +00:00
EndLine: 297,
StartPos: 4983,
EndPos: 4985,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 297,
EndLine: 297,
StartPos: 4983,
EndPos: 4985,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 297,
2018-06-30 21:38:31 +00:00
EndLine: 297,
StartPos: 4988,
EndPos: 4990,
2018-02-13 11:38:57 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 297,
EndLine: 297,
StartPos: 4988,
EndPos: 4990,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-02-13 11:38:57 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 298,
2018-06-30 21:38:31 +00:00
EndLine: 298,
StartPos: 4992,
EndPos: 5001,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignBitwiseAnd{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 298,
2018-06-30 21:38:31 +00:00
EndLine: 298,
StartPos: 4992,
EndPos: 5000,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 298,
2018-06-30 21:38:31 +00:00
EndLine: 298,
StartPos: 4992,
EndPos: 4994,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 298,
EndLine: 298,
StartPos: 4992,
EndPos: 4994,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-02-13 11:38:57 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 298,
2018-06-30 21:38:31 +00:00
EndLine: 298,
StartPos: 4998,
EndPos: 5000,
2018-02-13 11:38:57 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 298,
EndLine: 298,
StartPos: 4998,
EndPos: 5000,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-02-13 11:38:57 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 299,
2018-06-30 21:38:31 +00:00
EndLine: 299,
StartPos: 5002,
EndPos: 5011,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignBitwiseOr{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 299,
2018-06-30 21:38:31 +00:00
EndLine: 299,
StartPos: 5002,
EndPos: 5010,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 299,
2018-06-30 21:38:31 +00:00
EndLine: 299,
StartPos: 5002,
EndPos: 5004,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 299,
EndLine: 299,
StartPos: 5002,
EndPos: 5004,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 299,
2018-06-30 21:38:31 +00:00
EndLine: 299,
StartPos: 5008,
EndPos: 5010,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 299,
EndLine: 299,
StartPos: 5008,
EndPos: 5010,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 300,
2018-06-30 21:38:31 +00:00
EndLine: 300,
StartPos: 5012,
EndPos: 5021,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignBitwiseXor{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 300,
2018-06-30 21:38:31 +00:00
EndLine: 300,
StartPos: 5012,
EndPos: 5020,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 300,
2018-06-30 21:38:31 +00:00
EndLine: 300,
StartPos: 5012,
EndPos: 5014,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 300,
EndLine: 300,
StartPos: 5012,
EndPos: 5014,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 300,
2018-06-30 21:38:31 +00:00
EndLine: 300,
StartPos: 5018,
EndPos: 5020,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 300,
EndLine: 300,
StartPos: 5018,
EndPos: 5020,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 301,
2018-06-30 21:38:31 +00:00
EndLine: 301,
StartPos: 5022,
EndPos: 5031,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignConcat{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 301,
2018-06-30 21:38:31 +00:00
EndLine: 301,
StartPos: 5022,
EndPos: 5030,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 301,
2018-06-30 21:38:31 +00:00
EndLine: 301,
StartPos: 5022,
EndPos: 5024,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 301,
EndLine: 301,
StartPos: 5022,
EndPos: 5024,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 301,
2018-06-30 21:38:31 +00:00
EndLine: 301,
StartPos: 5028,
EndPos: 5030,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 301,
EndLine: 301,
StartPos: 5028,
EndPos: 5030,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 302,
2018-06-30 21:38:31 +00:00
EndLine: 302,
StartPos: 5032,
EndPos: 5041,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignDiv{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 302,
2018-06-30 21:38:31 +00:00
EndLine: 302,
StartPos: 5032,
EndPos: 5040,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 302,
2018-06-30 21:38:31 +00:00
EndLine: 302,
StartPos: 5032,
EndPos: 5034,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 302,
EndLine: 302,
StartPos: 5032,
EndPos: 5034,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 302,
2018-06-30 21:38:31 +00:00
EndLine: 302,
StartPos: 5038,
EndPos: 5040,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 302,
EndLine: 302,
StartPos: 5038,
EndPos: 5040,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 303,
2018-06-30 21:38:31 +00:00
EndLine: 303,
StartPos: 5042,
EndPos: 5051,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignMinus{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 303,
2018-06-30 21:38:31 +00:00
EndLine: 303,
StartPos: 5042,
EndPos: 5050,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 303,
2018-06-30 21:38:31 +00:00
EndLine: 303,
StartPos: 5042,
EndPos: 5044,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 303,
EndLine: 303,
StartPos: 5042,
EndPos: 5044,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 303,
2018-06-30 21:38:31 +00:00
EndLine: 303,
StartPos: 5048,
EndPos: 5050,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 303,
EndLine: 303,
StartPos: 5048,
EndPos: 5050,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 304,
2018-06-30 21:38:31 +00:00
EndLine: 304,
StartPos: 5052,
EndPos: 5061,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignMod{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 304,
2018-06-30 21:38:31 +00:00
EndLine: 304,
StartPos: 5052,
EndPos: 5060,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 304,
2018-06-30 21:38:31 +00:00
EndLine: 304,
StartPos: 5052,
EndPos: 5054,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 304,
EndLine: 304,
StartPos: 5052,
EndPos: 5054,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 304,
2018-06-30 21:38:31 +00:00
EndLine: 304,
StartPos: 5058,
EndPos: 5060,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 304,
EndLine: 304,
StartPos: 5058,
EndPos: 5060,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 305,
2018-06-30 21:38:31 +00:00
EndLine: 305,
StartPos: 5062,
EndPos: 5071,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignMul{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 305,
2018-06-30 21:38:31 +00:00
EndLine: 305,
StartPos: 5062,
EndPos: 5070,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 305,
2018-06-30 21:38:31 +00:00
EndLine: 305,
StartPos: 5062,
EndPos: 5064,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 305,
EndLine: 305,
StartPos: 5062,
EndPos: 5064,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 305,
2018-06-30 21:38:31 +00:00
EndLine: 305,
StartPos: 5068,
EndPos: 5070,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 305,
EndLine: 305,
StartPos: 5068,
EndPos: 5070,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 306,
2018-06-30 21:38:31 +00:00
EndLine: 306,
StartPos: 5072,
EndPos: 5081,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignPlus{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 306,
2018-06-30 21:38:31 +00:00
EndLine: 306,
StartPos: 5072,
EndPos: 5080,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 306,
2018-06-30 21:38:31 +00:00
EndLine: 306,
StartPos: 5072,
EndPos: 5074,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 306,
EndLine: 306,
StartPos: 5072,
EndPos: 5074,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 306,
2018-06-30 21:38:31 +00:00
EndLine: 306,
StartPos: 5078,
EndPos: 5080,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 306,
EndLine: 306,
StartPos: 5078,
EndPos: 5080,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 307,
2018-06-30 21:38:31 +00:00
EndLine: 307,
StartPos: 5082,
EndPos: 5092,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignPow{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 307,
2018-06-30 21:38:31 +00:00
EndLine: 307,
StartPos: 5082,
EndPos: 5091,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 307,
2018-06-30 21:38:31 +00:00
EndLine: 307,
StartPos: 5082,
EndPos: 5084,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 307,
EndLine: 307,
StartPos: 5082,
EndPos: 5084,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 307,
2018-06-30 21:38:31 +00:00
EndLine: 307,
StartPos: 5089,
EndPos: 5091,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 307,
EndLine: 307,
StartPos: 5089,
EndPos: 5091,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 308,
2018-06-30 21:38:31 +00:00
EndLine: 308,
StartPos: 5093,
EndPos: 5103,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignShiftLeft{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 308,
2018-06-30 21:38:31 +00:00
EndLine: 308,
StartPos: 5093,
EndPos: 5102,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 308,
2018-06-30 21:38:31 +00:00
EndLine: 308,
StartPos: 5093,
EndPos: 5095,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 308,
EndLine: 308,
StartPos: 5093,
EndPos: 5095,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 308,
2018-06-30 21:38:31 +00:00
EndLine: 308,
StartPos: 5100,
EndPos: 5102,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 308,
EndLine: 308,
StartPos: 5100,
EndPos: 5102,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 309,
2018-06-30 21:38:31 +00:00
EndLine: 309,
StartPos: 5104,
EndPos: 5114,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprAssignShiftRight{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 309,
2018-06-30 21:38:31 +00:00
EndLine: 309,
StartPos: 5104,
EndPos: 5113,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 309,
2018-06-30 21:38:31 +00:00
EndLine: 309,
StartPos: 5104,
EndPos: 5106,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 309,
EndLine: 309,
StartPos: 5104,
EndPos: 5106,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 309,
2018-06-30 21:38:31 +00:00
EndLine: 309,
StartPos: 5111,
EndPos: 5113,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 309,
EndLine: 309,
StartPos: 5111,
EndPos: 5113,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 312,
EndLine: 312,
StartPos: 5118,
EndPos: 5130,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprNew{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 312,
EndLine: 312,
StartPos: 5118,
EndPos: 5128,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameFullyQualified{
Node: ast.Node{
Position: &position.Position{
StartLine: 312,
EndLine: 312,
StartPos: 5122,
EndPos: 5126,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 312,
EndLine: 312,
StartPos: 5123,
EndPos: 5126,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 312,
EndLine: 312,
StartPos: 5126,
EndPos: 5128,
2020-05-13 17:18:53 +00:00
},
2018-02-13 11:15:28 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 313,
EndLine: 313,
StartPos: 5152,
EndPos: 5156,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 313,
EndLine: 313,
StartPos: 5152,
EndPos: 5155,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprMethodCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 313,
EndLine: 313,
StartPos: 5148,
EndPos: 5150,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprNew{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 313,
EndLine: 313,
StartPos: 5132,
EndPos: 5142,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameFullyQualified{
Node: ast.Node{
Position: &position.Position{
StartLine: 313,
EndLine: 313,
StartPos: 5136,
EndPos: 5140,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 313,
EndLine: 313,
StartPos: 5137,
EndPos: 5140,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-13 11:15:28 +00:00
},
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 313,
EndLine: 313,
StartPos: 5140,
EndPos: 5142,
2020-05-13 17:18:53 +00:00
},
},
},
},
Method: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 313,
EndLine: 313,
StartPos: 5145,
EndPos: 5148,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 313,
EndLine: 313,
StartPos: 5148,
EndPos: 5150,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2018-02-13 11:15:28 +00:00
},
2020-05-13 17:18:53 +00:00
},
Property: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 313,
EndLine: 313,
StartPos: 5152,
EndPos: 5155,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("baz"),
2018-02-13 11:15:28 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 314,
EndLine: 314,
StartPos: 5173,
EndPos: 5176,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 314,
EndLine: 314,
StartPos: 5173,
EndPos: 5174,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 314,
EndLine: 314,
StartPos: 5170,
EndPos: 5171,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprNew{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 314,
EndLine: 314,
StartPos: 5158,
EndPos: 5168,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameFullyQualified{
Node: ast.Node{
Position: &position.Position{
StartLine: 314,
EndLine: 314,
StartPos: 5162,
EndPos: 5166,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 314,
EndLine: 314,
StartPos: 5163,
EndPos: 5166,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
},
},
},
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 314,
EndLine: 314,
StartPos: 5166,
EndPos: 5168,
2018-06-24 07:19:44 +00:00
},
2018-02-13 11:15:28 +00:00
},
},
2020-05-13 17:18:53 +00:00
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 314,
EndLine: 314,
StartPos: 5170,
EndPos: 5171,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 314,
EndLine: 314,
StartPos: 5173,
EndPos: 5174,
2018-06-24 07:19:44 +00:00
},
2018-02-13 11:15:28 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-06-24 07:19:44 +00:00
},
2018-02-13 11:15:28 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 315,
EndLine: 315,
StartPos: 5197,
EndPos: 5200,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprMethodCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 315,
EndLine: 315,
StartPos: 5197,
EndPos: 5199,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 315,
EndLine: 315,
StartPos: 5190,
EndPos: 5191,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprNew{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 315,
EndLine: 315,
StartPos: 5178,
EndPos: 5188,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameFullyQualified{
Node: ast.Node{
Position: &position.Position{
StartLine: 315,
EndLine: 315,
StartPos: 5182,
EndPos: 5186,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 315,
EndLine: 315,
StartPos: 5183,
EndPos: 5186,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
},
},
},
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 315,
EndLine: 315,
StartPos: 5186,
EndPos: 5188,
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 315,
EndLine: 315,
StartPos: 5190,
EndPos: 5191,
2018-02-13 11:15:28 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-02-13 11:15:28 +00:00
},
2020-05-13 17:18:53 +00:00
},
Method: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 315,
EndLine: 315,
StartPos: 5194,
EndPos: 5197,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 315,
EndLine: 315,
StartPos: 5197,
EndPos: 5199,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2018-02-13 11:15:28 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 317,
EndLine: 317,
StartPos: 5202,
EndPos: 5219,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 317,
EndLine: 317,
StartPos: 5202,
EndPos: 5218,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 317,
EndLine: 317,
StartPos: 5202,
EndPos: 5215,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 317,
EndLine: 317,
StartPos: 5202,
EndPos: 5212,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 317,
EndLine: 317,
StartPos: 5208,
EndPos: 5211,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ExprShortArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 317,
EndLine: 317,
StartPos: 5208,
EndPos: 5211,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 317,
EndLine: 317,
StartPos: 5209,
EndPos: 5210,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 317,
EndLine: 317,
StartPos: 5209,
EndPos: 5210,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("0"),
2018-06-24 07:19:44 +00:00
},
2018-02-13 12:58:10 +00:00
},
},
},
},
},
},
2020-05-13 17:18:53 +00:00
Dim: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 317,
EndLine: 317,
StartPos: 5213,
EndPos: 5214,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("0"),
},
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 317,
EndLine: 317,
StartPos: 5216,
EndPos: 5217,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-02-13 12:58:10 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 318,
EndLine: 318,
StartPos: 5220,
EndPos: 5229,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 318,
EndLine: 318,
StartPos: 5220,
EndPos: 5228,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Var: &ast.ScalarString{
Node: ast.Node{
Position: &position.Position{
StartLine: 318,
EndLine: 318,
StartPos: 5220,
EndPos: 5225,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("\"foo\""),
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 318,
EndLine: 318,
StartPos: 5226,
EndPos: 5227,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-06-24 07:19:44 +00:00
},
2018-02-13 12:58:10 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 319,
EndLine: 319,
StartPos: 5230,
EndPos: 5237,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 319,
EndLine: 319,
StartPos: 5230,
EndPos: 5236,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 319,
EndLine: 319,
StartPos: 5230,
EndPos: 5233,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Const: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 319,
EndLine: 319,
StartPos: 5230,
EndPos: 5233,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 319,
EndLine: 319,
StartPos: 5230,
EndPos: 5233,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-13 12:58:10 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Dim: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 319,
EndLine: 319,
StartPos: 5234,
EndPos: 5235,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-06-24 07:19:44 +00:00
},
2018-02-13 12:58:10 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 320,
EndLine: 320,
StartPos: 5238,
EndPos: 5250,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprClassConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 320,
EndLine: 320,
StartPos: 5238,
EndPos: 5249,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Class: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 320,
EndLine: 320,
StartPos: 5238,
EndPos: 5244,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("static"),
},
ConstantName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 320,
EndLine: 320,
StartPos: 5246,
EndPos: 5249,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-13 17:38:37 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 322,
EndLine: 322,
StartPos: 5252,
EndPos: 5261,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprNew{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 322,
EndLine: 322,
StartPos: 5252,
EndPos: 5260,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 322,
EndLine: 322,
StartPos: 5256,
EndPos: 5260,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 322,
EndLine: 322,
StartPos: 5256,
EndPos: 5260,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$foo"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-14 10:14:08 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 323,
EndLine: 323,
StartPos: 5262,
EndPos: 5277,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprNew{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 323,
EndLine: 323,
StartPos: 5262,
EndPos: 5276,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.ExprStaticPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 323,
EndLine: 323,
StartPos: 5266,
EndPos: 5276,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 323,
EndLine: 323,
StartPos: 5266,
EndPos: 5270,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 323,
EndLine: 323,
StartPos: 5266,
EndPos: 5270,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$foo"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Property: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 323,
EndLine: 323,
StartPos: 5272,
EndPos: 5276,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 323,
EndLine: 323,
StartPos: 5272,
EndPos: 5276,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$bar"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-14 19:02:57 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 324,
EndLine: 324,
StartPos: 5278,
EndPos: 5291,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprNew{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 324,
EndLine: 324,
StartPos: 5278,
EndPos: 5289,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 324,
EndLine: 324,
StartPos: 5288,
EndPos: 5289,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 324,
EndLine: 324,
StartPos: 5286,
EndPos: 5289,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 324,
EndLine: 324,
StartPos: 5282,
EndPos: 5287,
2020-05-13 17:18:53 +00:00
},
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 324,
EndLine: 324,
StartPos: 5282,
EndPos: 5284,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Property: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 324,
EndLine: 324,
StartPos: 5286,
EndPos: 5287,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("b"),
},
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 324,
EndLine: 324,
StartPos: 5288,
EndPos: 5289,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-02-14 10:14:08 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 325,
EndLine: 325,
StartPos: 5292,
EndPos: 5324,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprNew{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 325,
EndLine: 325,
StartPos: 5292,
EndPos: 5322,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 325,
EndLine: 325,
StartPos: 5321,
EndPos: 5322,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 325,
EndLine: 325,
StartPos: 5319,
EndPos: 5322,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 325,
EndLine: 325,
StartPos: 5315,
EndPos: 5320,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 325,
EndLine: 325,
StartPos: 5302,
EndPos: 5317,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 325,
EndLine: 325,
StartPos: 5300,
EndPos: 5312,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 325,
EndLine: 325,
StartPos: 5296,
EndPos: 5301,
2020-05-13 17:18:53 +00:00
},
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5296,
EndPos: 5298,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Property: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5300,
EndPos: 5301,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("b"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 10:14:08 +00:00
},
2020-05-13 17:18:53 +00:00
Dim: &ast.ExprTernary{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 325,
EndLine: 325,
StartPos: 5302,
EndPos: 5312,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Condition: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 325,
EndLine: 325,
StartPos: 5302,
EndPos: 5304,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5302,
EndPos: 5304,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
IfFalse: &ast.ExprConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 325,
EndLine: 325,
StartPos: 5308,
EndPos: 5312,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Const: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5308,
EndPos: 5312,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5308,
EndPos: 5312,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("null"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 10:14:08 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
Property: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 325,
EndLine: 325,
StartPos: 5315,
EndPos: 5317,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5315,
EndPos: 5317,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$c"),
2020-05-13 17:18:53 +00:00
},
},
},
Property: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5319,
EndPos: 5320,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("d"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 325,
EndLine: 325,
StartPos: 5321,
EndPos: 5322,
2018-07-24 19:24:32 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-07-24 19:24:32 +00:00
},
2018-02-14 10:14:08 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5324,
EndPos: 5343,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5331,
EndPos: 5342,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5331,
EndPos: 5333,
2018-07-24 19:24:32 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5331,
EndPos: 5333,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5336,
EndPos: 5342,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprShortArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5336,
EndPos: 5339,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5337,
EndPos: 5338,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5337,
EndPos: 5338,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-07-24 19:24:32 +00:00
},
2018-02-14 14:23:10 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Dim: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 325,
EndLine: 325,
StartPos: 5340,
EndPos: 5341,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-02-14 10:14:08 +00:00
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 327,
EndLine: 327,
StartPos: 5345,
EndPos: 5360,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 327,
2018-06-30 21:38:31 +00:00
EndLine: 327,
StartPos: 5352,
EndPos: 5359,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 327,
2018-06-30 21:38:31 +00:00
EndLine: 327,
StartPos: 5352,
EndPos: 5354,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 327,
EndLine: 327,
StartPos: 5352,
EndPos: 5354,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBooleanNot{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 327,
2018-06-30 21:38:31 +00:00
EndLine: 327,
StartPos: 5357,
EndPos: 5359,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 327,
EndLine: 327,
StartPos: 5358,
EndPos: 5359,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-07-24 19:24:32 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 328,
EndLine: 328,
StartPos: 5361,
EndPos: 5376,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 328,
EndLine: 328,
StartPos: 5368,
EndPos: 5375,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 328,
EndLine: 328,
StartPos: 5368,
EndPos: 5370,
2018-02-14 14:23:10 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 328,
EndLine: 328,
StartPos: 5368,
EndPos: 5370,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBitwiseNot{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 328,
EndLine: 328,
StartPos: 5373,
EndPos: 5375,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 328,
EndLine: 328,
StartPos: 5374,
EndPos: 5375,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 329,
EndLine: 329,
StartPos: 5377,
EndPos: 5392,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 329,
2018-06-30 21:38:31 +00:00
EndLine: 329,
StartPos: 5384,
EndPos: 5391,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 329,
2018-06-30 21:38:31 +00:00
EndLine: 329,
StartPos: 5384,
EndPos: 5386,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 329,
EndLine: 329,
StartPos: 5384,
EndPos: 5386,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprUnaryPlus{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 329,
2018-06-30 21:38:31 +00:00
EndLine: 329,
StartPos: 5389,
EndPos: 5391,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 329,
EndLine: 329,
StartPos: 5390,
EndPos: 5391,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 330,
EndLine: 330,
StartPos: 5393,
EndPos: 5408,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 330,
2018-06-30 21:38:31 +00:00
EndLine: 330,
StartPos: 5400,
EndPos: 5407,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 330,
2018-06-30 21:38:31 +00:00
EndLine: 330,
StartPos: 5400,
EndPos: 5402,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 330,
EndLine: 330,
StartPos: 5400,
EndPos: 5402,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprUnaryMinus{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 330,
2018-06-30 21:38:31 +00:00
EndLine: 330,
StartPos: 5405,
EndPos: 5407,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 330,
EndLine: 330,
StartPos: 5406,
EndPos: 5407,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 331,
EndLine: 331,
StartPos: 5409,
EndPos: 5425,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 331,
2018-06-30 21:38:31 +00:00
EndLine: 331,
StartPos: 5416,
EndPos: 5423,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 331,
2018-06-30 21:38:31 +00:00
EndLine: 331,
StartPos: 5416,
EndPos: 5418,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 331,
EndLine: 331,
StartPos: 5416,
EndPos: 5418,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 331,
EndLine: 331,
StartPos: 5422,
EndPos: 5423,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 332,
EndLine: 332,
StartPos: 5426,
EndPos: 5445,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 332,
2018-06-30 21:38:31 +00:00
EndLine: 332,
StartPos: 5433,
EndPos: 5444,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 332,
2018-06-30 21:38:31 +00:00
EndLine: 332,
StartPos: 5433,
EndPos: 5435,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 332,
EndLine: 332,
StartPos: 5433,
EndPos: 5435,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprTernary{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 332,
2018-06-30 21:38:31 +00:00
EndLine: 332,
StartPos: 5438,
EndPos: 5444,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Condition: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 332,
EndLine: 332,
StartPos: 5438,
EndPos: 5439,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
IfFalse: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 332,
EndLine: 332,
StartPos: 5443,
EndPos: 5444,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-07-24 19:24:32 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 333,
EndLine: 333,
StartPos: 5446,
EndPos: 5468,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 333,
2018-06-30 21:38:31 +00:00
EndLine: 333,
StartPos: 5453,
EndPos: 5467,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 333,
2018-06-30 21:38:31 +00:00
EndLine: 333,
StartPos: 5453,
EndPos: 5455,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 333,
EndLine: 333,
StartPos: 5453,
EndPos: 5455,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprTernary{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 333,
EndLine: 333,
StartPos: 5458,
EndPos: 5467,
2018-07-24 19:24:32 +00:00
},
},
2020-05-13 17:18:53 +00:00
Condition: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 333,
EndLine: 333,
StartPos: 5458,
EndPos: 5459,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
IfTrue: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 333,
EndLine: 333,
StartPos: 5462,
EndPos: 5463,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
},
IfFalse: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 333,
EndLine: 333,
StartPos: 5466,
EndPos: 5467,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("3"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-14 14:23:10 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 334,
EndLine: 334,
StartPos: 5469,
EndPos: 5487,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 334,
2018-06-30 21:38:31 +00:00
EndLine: 334,
StartPos: 5476,
EndPos: 5486,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 334,
2018-06-30 21:38:31 +00:00
EndLine: 334,
StartPos: 5476,
EndPos: 5478,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 334,
EndLine: 334,
StartPos: 5476,
EndPos: 5478,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryBitwiseAnd{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 334,
2018-06-30 21:38:31 +00:00
EndLine: 334,
StartPos: 5481,
EndPos: 5486,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 334,
EndLine: 334,
StartPos: 5481,
EndPos: 5482,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 334,
EndLine: 334,
StartPos: 5485,
EndPos: 5486,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 335,
EndLine: 335,
StartPos: 5488,
EndPos: 5506,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 335,
2018-06-30 21:38:31 +00:00
EndLine: 335,
StartPos: 5495,
EndPos: 5505,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 335,
2018-06-30 21:38:31 +00:00
EndLine: 335,
StartPos: 5495,
EndPos: 5497,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 335,
EndLine: 335,
StartPos: 5495,
EndPos: 5497,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryBitwiseOr{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 335,
2018-06-30 21:38:31 +00:00
EndLine: 335,
StartPos: 5500,
EndPos: 5505,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 335,
EndLine: 335,
StartPos: 5500,
EndPos: 5501,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 335,
EndLine: 335,
StartPos: 5504,
EndPos: 5505,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 336,
EndLine: 336,
StartPos: 5507,
EndPos: 5525,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 336,
2018-06-30 21:38:31 +00:00
EndLine: 336,
StartPos: 5514,
EndPos: 5524,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 336,
2018-06-30 21:38:31 +00:00
EndLine: 336,
StartPos: 5514,
EndPos: 5516,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 336,
EndLine: 336,
StartPos: 5514,
EndPos: 5516,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryBitwiseXor{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 336,
2018-06-30 21:38:31 +00:00
EndLine: 336,
StartPos: 5519,
EndPos: 5524,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 336,
EndLine: 336,
StartPos: 5519,
EndPos: 5520,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 336,
EndLine: 336,
StartPos: 5523,
EndPos: 5524,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 337,
EndLine: 337,
StartPos: 5526,
EndPos: 5545,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 337,
2018-06-30 21:38:31 +00:00
EndLine: 337,
StartPos: 5533,
EndPos: 5544,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 337,
2018-06-30 21:38:31 +00:00
EndLine: 337,
StartPos: 5533,
EndPos: 5535,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 337,
EndLine: 337,
StartPos: 5533,
EndPos: 5535,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryBooleanAnd{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 337,
2018-06-30 21:38:31 +00:00
EndLine: 337,
StartPos: 5538,
EndPos: 5544,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 337,
EndLine: 337,
StartPos: 5538,
EndPos: 5539,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 337,
EndLine: 337,
StartPos: 5543,
EndPos: 5544,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 338,
EndLine: 338,
StartPos: 5546,
EndPos: 5565,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 338,
2018-06-30 21:38:31 +00:00
EndLine: 338,
StartPos: 5553,
EndPos: 5564,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 338,
2018-06-30 21:38:31 +00:00
EndLine: 338,
StartPos: 5553,
EndPos: 5555,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 338,
EndLine: 338,
StartPos: 5553,
EndPos: 5555,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryBooleanOr{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 338,
2018-06-30 21:38:31 +00:00
EndLine: 338,
StartPos: 5558,
EndPos: 5564,
2020-05-13 17:18:53 +00:00
},
},
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 338,
EndLine: 338,
StartPos: 5558,
EndPos: 5559,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 338,
EndLine: 338,
StartPos: 5563,
EndPos: 5564,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 339,
EndLine: 339,
StartPos: 5566,
EndPos: 5584,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 339,
2018-06-30 21:38:31 +00:00
EndLine: 339,
StartPos: 5573,
EndPos: 5583,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 339,
2018-06-30 21:38:31 +00:00
EndLine: 339,
StartPos: 5573,
EndPos: 5575,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 339,
EndLine: 339,
StartPos: 5573,
EndPos: 5575,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryConcat{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 339,
2018-06-30 21:38:31 +00:00
EndLine: 339,
StartPos: 5578,
EndPos: 5583,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 339,
EndLine: 339,
StartPos: 5578,
EndPos: 5579,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 339,
EndLine: 339,
StartPos: 5582,
EndPos: 5583,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 340,
EndLine: 340,
StartPos: 5585,
EndPos: 5603,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 340,
2018-06-30 21:38:31 +00:00
EndLine: 340,
StartPos: 5592,
EndPos: 5602,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 340,
2018-06-30 21:38:31 +00:00
EndLine: 340,
StartPos: 5592,
EndPos: 5594,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 340,
EndLine: 340,
StartPos: 5592,
EndPos: 5594,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryDiv{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 340,
2018-06-30 21:38:31 +00:00
EndLine: 340,
StartPos: 5597,
EndPos: 5602,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 340,
EndLine: 340,
StartPos: 5597,
EndPos: 5598,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 340,
EndLine: 340,
StartPos: 5601,
EndPos: 5602,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 341,
EndLine: 341,
StartPos: 5604,
EndPos: 5623,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 341,
2018-06-30 21:38:31 +00:00
EndLine: 341,
StartPos: 5611,
EndPos: 5622,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 341,
2018-06-30 21:38:31 +00:00
EndLine: 341,
StartPos: 5611,
EndPos: 5613,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 341,
EndLine: 341,
StartPos: 5611,
EndPos: 5613,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryEqual{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 341,
2018-06-30 21:38:31 +00:00
EndLine: 341,
StartPos: 5616,
EndPos: 5622,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 341,
EndLine: 341,
StartPos: 5616,
EndPos: 5617,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 341,
EndLine: 341,
StartPos: 5621,
EndPos: 5622,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 342,
EndLine: 342,
StartPos: 5624,
EndPos: 5643,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 342,
2018-06-30 21:38:31 +00:00
EndLine: 342,
StartPos: 5631,
EndPos: 5642,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 342,
2018-06-30 21:38:31 +00:00
EndLine: 342,
StartPos: 5631,
EndPos: 5633,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 342,
EndLine: 342,
StartPos: 5631,
EndPos: 5633,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryGreaterOrEqual{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 342,
2018-06-30 21:38:31 +00:00
EndLine: 342,
StartPos: 5636,
EndPos: 5642,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 342,
EndLine: 342,
StartPos: 5636,
EndPos: 5637,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 342,
EndLine: 342,
StartPos: 5641,
EndPos: 5642,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 343,
EndLine: 343,
StartPos: 5644,
EndPos: 5662,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 343,
2018-06-30 21:38:31 +00:00
EndLine: 343,
StartPos: 5651,
EndPos: 5661,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 343,
2018-06-30 21:38:31 +00:00
EndLine: 343,
StartPos: 5651,
EndPos: 5653,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 343,
EndLine: 343,
StartPos: 5651,
EndPos: 5653,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryGreater{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 343,
2018-06-30 21:38:31 +00:00
EndLine: 343,
StartPos: 5656,
EndPos: 5661,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 343,
EndLine: 343,
StartPos: 5656,
EndPos: 5657,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 343,
EndLine: 343,
StartPos: 5660,
EndPos: 5661,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 344,
EndLine: 344,
StartPos: 5663,
EndPos: 5683,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 344,
2018-06-30 21:38:31 +00:00
EndLine: 344,
StartPos: 5670,
EndPos: 5682,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 344,
2018-06-30 21:38:31 +00:00
EndLine: 344,
StartPos: 5670,
EndPos: 5672,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 344,
EndLine: 344,
StartPos: 5670,
EndPos: 5672,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryIdentical{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 344,
2018-06-30 21:38:31 +00:00
EndLine: 344,
StartPos: 5675,
EndPos: 5682,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 344,
EndLine: 344,
StartPos: 5675,
EndPos: 5676,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 344,
EndLine: 344,
StartPos: 5681,
EndPos: 5682,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 345,
EndLine: 345,
StartPos: 5684,
EndPos: 5704,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 345,
2018-06-30 21:38:31 +00:00
EndLine: 345,
StartPos: 5691,
EndPos: 5703,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 345,
2018-06-30 21:38:31 +00:00
EndLine: 345,
StartPos: 5691,
EndPos: 5693,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 345,
EndLine: 345,
StartPos: 5691,
EndPos: 5693,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryLogicalAnd{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 345,
2018-06-30 21:38:31 +00:00
EndLine: 345,
StartPos: 5696,
EndPos: 5703,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 345,
EndLine: 345,
StartPos: 5696,
EndPos: 5697,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 345,
EndLine: 345,
StartPos: 5702,
EndPos: 5703,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 346,
EndLine: 346,
StartPos: 5705,
EndPos: 5724,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 346,
2018-06-30 21:38:31 +00:00
EndLine: 346,
StartPos: 5712,
EndPos: 5723,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 346,
2018-06-30 21:38:31 +00:00
EndLine: 346,
StartPos: 5712,
EndPos: 5714,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 346,
EndLine: 346,
StartPos: 5712,
EndPos: 5714,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryLogicalOr{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 346,
2018-06-30 21:38:31 +00:00
EndLine: 346,
StartPos: 5717,
EndPos: 5723,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 346,
EndLine: 346,
StartPos: 5717,
EndPos: 5718,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 346,
EndLine: 346,
StartPos: 5722,
EndPos: 5723,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 347,
EndLine: 347,
StartPos: 5725,
EndPos: 5745,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 347,
2018-06-30 21:38:31 +00:00
EndLine: 347,
StartPos: 5732,
EndPos: 5744,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 347,
2018-06-30 21:38:31 +00:00
EndLine: 347,
StartPos: 5732,
EndPos: 5734,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 347,
EndLine: 347,
StartPos: 5732,
EndPos: 5734,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryLogicalXor{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 347,
2018-06-30 21:38:31 +00:00
EndLine: 347,
StartPos: 5737,
EndPos: 5744,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 347,
EndLine: 347,
StartPos: 5737,
EndPos: 5738,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 347,
EndLine: 347,
StartPos: 5743,
EndPos: 5744,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 348,
EndLine: 348,
StartPos: 5746,
EndPos: 5764,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 348,
2018-06-30 21:38:31 +00:00
EndLine: 348,
StartPos: 5753,
EndPos: 5763,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 348,
2018-06-30 21:38:31 +00:00
EndLine: 348,
StartPos: 5753,
EndPos: 5755,
2020-05-13 17:18:53 +00:00
},
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 348,
EndLine: 348,
StartPos: 5753,
EndPos: 5755,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryMinus{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 348,
2018-06-30 21:38:31 +00:00
EndLine: 348,
StartPos: 5758,
EndPos: 5763,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 348,
EndLine: 348,
StartPos: 5758,
EndPos: 5759,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 348,
EndLine: 348,
StartPos: 5762,
EndPos: 5763,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 349,
EndLine: 349,
StartPos: 5765,
EndPos: 5783,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 349,
2018-06-30 21:38:31 +00:00
EndLine: 349,
StartPos: 5772,
EndPos: 5782,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 349,
2018-06-30 21:38:31 +00:00
EndLine: 349,
StartPos: 5772,
EndPos: 5774,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 349,
EndLine: 349,
StartPos: 5772,
EndPos: 5774,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryMod{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 349,
2018-06-30 21:38:31 +00:00
EndLine: 349,
StartPos: 5777,
EndPos: 5782,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 349,
EndLine: 349,
StartPos: 5777,
EndPos: 5778,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 349,
EndLine: 349,
StartPos: 5781,
EndPos: 5782,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 350,
EndLine: 350,
StartPos: 5784,
EndPos: 5802,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 350,
2018-06-30 21:38:31 +00:00
EndLine: 350,
StartPos: 5791,
EndPos: 5801,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 350,
2018-06-30 21:38:31 +00:00
EndLine: 350,
StartPos: 5791,
EndPos: 5793,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 350,
EndLine: 350,
StartPos: 5791,
EndPos: 5793,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryMul{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 350,
2018-06-30 21:38:31 +00:00
EndLine: 350,
StartPos: 5796,
EndPos: 5801,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 350,
EndLine: 350,
StartPos: 5796,
EndPos: 5797,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 350,
EndLine: 350,
StartPos: 5800,
EndPos: 5801,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 351,
EndLine: 351,
StartPos: 5803,
EndPos: 5822,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 351,
2018-06-30 21:38:31 +00:00
EndLine: 351,
StartPos: 5810,
EndPos: 5821,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 351,
2018-06-30 21:38:31 +00:00
EndLine: 351,
StartPos: 5810,
EndPos: 5812,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 351,
EndLine: 351,
StartPos: 5810,
EndPos: 5812,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryNotEqual{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 351,
2018-06-30 21:38:31 +00:00
EndLine: 351,
StartPos: 5815,
EndPos: 5821,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 351,
EndLine: 351,
StartPos: 5815,
EndPos: 5816,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 351,
EndLine: 351,
StartPos: 5820,
EndPos: 5821,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 352,
EndLine: 352,
StartPos: 5823,
EndPos: 5843,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 352,
2018-06-30 21:38:31 +00:00
EndLine: 352,
StartPos: 5830,
EndPos: 5842,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 352,
2018-06-30 21:38:31 +00:00
EndLine: 352,
StartPos: 5830,
EndPos: 5832,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 352,
EndLine: 352,
StartPos: 5830,
EndPos: 5832,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryNotIdentical{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 352,
2018-06-30 21:38:31 +00:00
EndLine: 352,
StartPos: 5835,
EndPos: 5842,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 352,
EndLine: 352,
StartPos: 5835,
EndPos: 5836,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 352,
EndLine: 352,
StartPos: 5841,
EndPos: 5842,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 353,
EndLine: 353,
StartPos: 5844,
EndPos: 5862,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 353,
2018-06-30 21:38:31 +00:00
EndLine: 353,
StartPos: 5851,
EndPos: 5861,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 353,
2018-06-30 21:38:31 +00:00
EndLine: 353,
StartPos: 5851,
EndPos: 5853,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 353,
EndLine: 353,
StartPos: 5851,
EndPos: 5853,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryPlus{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 353,
2018-06-30 21:38:31 +00:00
EndLine: 353,
StartPos: 5856,
EndPos: 5861,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 353,
EndLine: 353,
StartPos: 5856,
EndPos: 5857,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 353,
EndLine: 353,
StartPos: 5860,
EndPos: 5861,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 354,
EndLine: 354,
StartPos: 5863,
EndPos: 5882,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 354,
2018-06-30 21:38:31 +00:00
EndLine: 354,
StartPos: 5870,
EndPos: 5881,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 354,
2018-06-30 21:38:31 +00:00
EndLine: 354,
StartPos: 5870,
EndPos: 5872,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 354,
EndLine: 354,
StartPos: 5870,
EndPos: 5872,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryPow{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 354,
2018-06-30 21:38:31 +00:00
EndLine: 354,
StartPos: 5875,
EndPos: 5881,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 354,
EndLine: 354,
StartPos: 5875,
EndPos: 5876,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 354,
EndLine: 354,
StartPos: 5880,
EndPos: 5881,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 355,
EndLine: 355,
StartPos: 5883,
EndPos: 5902,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 355,
2018-06-30 21:38:31 +00:00
EndLine: 355,
StartPos: 5890,
EndPos: 5901,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 355,
2018-06-30 21:38:31 +00:00
EndLine: 355,
StartPos: 5890,
EndPos: 5892,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 355,
EndLine: 355,
StartPos: 5890,
EndPos: 5892,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryShiftLeft{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 355,
2018-06-30 21:38:31 +00:00
EndLine: 355,
StartPos: 5895,
EndPos: 5901,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 355,
EndLine: 355,
StartPos: 5895,
EndPos: 5896,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 355,
EndLine: 355,
StartPos: 5900,
EndPos: 5901,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 356,
EndLine: 356,
StartPos: 5903,
EndPos: 5922,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 356,
2018-06-30 21:38:31 +00:00
EndLine: 356,
StartPos: 5910,
EndPos: 5921,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 356,
2018-06-30 21:38:31 +00:00
EndLine: 356,
StartPos: 5910,
EndPos: 5912,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 356,
EndLine: 356,
StartPos: 5910,
EndPos: 5912,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinaryShiftRight{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 356,
2018-06-30 21:38:31 +00:00
EndLine: 356,
StartPos: 5915,
EndPos: 5921,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 356,
EndLine: 356,
StartPos: 5915,
EndPos: 5916,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 356,
EndLine: 356,
StartPos: 5920,
EndPos: 5921,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 357,
EndLine: 357,
StartPos: 5923,
EndPos: 5942,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 357,
2018-06-30 21:38:31 +00:00
EndLine: 357,
StartPos: 5930,
EndPos: 5941,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 357,
2018-06-30 21:38:31 +00:00
EndLine: 357,
StartPos: 5930,
EndPos: 5932,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 357,
EndLine: 357,
StartPos: 5930,
EndPos: 5932,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinarySmallerOrEqual{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 357,
2018-06-30 21:38:31 +00:00
EndLine: 357,
StartPos: 5935,
EndPos: 5941,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 357,
EndLine: 357,
StartPos: 5935,
EndPos: 5936,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 357,
EndLine: 357,
StartPos: 5940,
EndPos: 5941,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 358,
EndLine: 358,
StartPos: 5943,
EndPos: 5961,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 358,
2018-06-30 21:38:31 +00:00
EndLine: 358,
StartPos: 5950,
EndPos: 5960,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 358,
2018-06-30 21:38:31 +00:00
EndLine: 358,
StartPos: 5950,
EndPos: 5952,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 358,
EndLine: 358,
StartPos: 5950,
EndPos: 5952,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprBinarySmaller{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 358,
2018-06-30 21:38:31 +00:00
EndLine: 358,
StartPos: 5955,
EndPos: 5960,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Left: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 358,
EndLine: 358,
StartPos: 5955,
EndPos: 5956,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
},
Right: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 358,
EndLine: 358,
StartPos: 5959,
EndPos: 5960,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 359,
EndLine: 359,
StartPos: 5962,
EndPos: 5983,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 359,
2018-06-30 21:38:31 +00:00
EndLine: 359,
StartPos: 5969,
EndPos: 5982,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 359,
2018-06-30 21:38:31 +00:00
EndLine: 359,
StartPos: 5969,
EndPos: 5971,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 359,
EndLine: 359,
StartPos: 5969,
EndPos: 5971,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprClassConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 359,
2018-06-30 21:38:31 +00:00
EndLine: 359,
StartPos: 5974,
EndPos: 5982,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 359,
EndLine: 359,
StartPos: 5974,
EndPos: 5977,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 359,
EndLine: 359,
StartPos: 5974,
EndPos: 5977,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-07-24 19:24:32 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ConstantName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 359,
EndLine: 359,
StartPos: 5979,
EndPos: 5982,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 360,
EndLine: 360,
StartPos: 5984,
EndPos: 6007,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 360,
2018-06-30 21:38:31 +00:00
EndLine: 360,
StartPos: 5991,
EndPos: 6006,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 360,
2018-06-30 21:38:31 +00:00
EndLine: 360,
StartPos: 5991,
EndPos: 5993,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 360,
EndLine: 360,
StartPos: 5991,
EndPos: 5993,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprClassConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 360,
2018-06-30 21:38:31 +00:00
EndLine: 360,
StartPos: 5996,
EndPos: 6006,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 360,
EndLine: 360,
StartPos: 5996,
EndPos: 5999,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 360,
EndLine: 360,
StartPos: 5996,
EndPos: 5999,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-07-24 19:24:32 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ConstantName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 360,
EndLine: 360,
StartPos: 6001,
EndPos: 6006,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("class"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 361,
EndLine: 361,
StartPos: 6008,
EndPos: 6030,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 361,
2018-06-30 21:38:31 +00:00
EndLine: 361,
StartPos: 6015,
EndPos: 6029,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 361,
2018-06-30 21:38:31 +00:00
EndLine: 361,
StartPos: 6015,
EndPos: 6017,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 361,
EndLine: 361,
StartPos: 6015,
EndPos: 6017,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarMagicConstant{
Node: ast.Node{
Position: &position.Position{
StartLine: 361,
EndLine: 361,
StartPos: 6020,
EndPos: 6029,
2020-05-13 17:18:53 +00:00
},
2018-02-14 14:23:10 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("__CLASS__"),
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 362,
EndLine: 362,
StartPos: 6031,
EndPos: 6047,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 362,
2018-06-30 21:38:31 +00:00
EndLine: 362,
StartPos: 6038,
EndPos: 6046,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 362,
2018-06-30 21:38:31 +00:00
EndLine: 362,
StartPos: 6038,
EndPos: 6040,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 362,
EndLine: 362,
StartPos: 6038,
EndPos: 6040,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 362,
2018-06-30 21:38:31 +00:00
EndLine: 362,
StartPos: 6043,
EndPos: 6046,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Const: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 362,
EndLine: 362,
StartPos: 6043,
EndPos: 6046,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 362,
EndLine: 362,
StartPos: 6043,
EndPos: 6046,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 363,
EndLine: 363,
StartPos: 6048,
EndPos: 6074,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 363,
2018-06-30 21:38:31 +00:00
EndLine: 363,
StartPos: 6055,
EndPos: 6073,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 363,
2018-06-30 21:38:31 +00:00
EndLine: 363,
StartPos: 6055,
EndPos: 6057,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 363,
EndLine: 363,
StartPos: 6055,
EndPos: 6057,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprConstFetch{
Node: ast.Node{
2018-07-24 19:24:32 +00:00
Position: &position.Position{
StartLine: 363,
EndLine: 363,
StartPos: 6060,
EndPos: 6073,
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
},
Const: &ast.NameRelative{
Node: ast.Node{
Position: &position.Position{
StartLine: 363,
EndLine: 363,
StartPos: 6060,
EndPos: 6073,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 363,
EndLine: 363,
StartPos: 6070,
EndPos: 6073,
2020-05-13 17:18:53 +00:00
},
2018-07-24 19:24:32 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-07-24 19:24:32 +00:00
},
2018-02-14 14:23:10 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2018-02-14 14:23:10 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 364,
EndLine: 364,
StartPos: 6075,
EndPos: 6092,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 364,
2018-06-30 21:38:31 +00:00
EndLine: 364,
StartPos: 6082,
EndPos: 6091,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 364,
2018-06-30 21:38:31 +00:00
EndLine: 364,
StartPos: 6082,
EndPos: 6084,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 364,
EndLine: 364,
StartPos: 6082,
EndPos: 6084,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 364,
2018-06-30 21:38:31 +00:00
EndLine: 364,
StartPos: 6087,
EndPos: 6091,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Const: &ast.NameFullyQualified{
Node: ast.Node{
Position: &position.Position{
StartLine: 364,
EndLine: 364,
StartPos: 6087,
EndPos: 6091,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 364,
EndLine: 364,
StartPos: 6088,
EndPos: 6091,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 365,
EndLine: 365,
StartPos: 6093,
EndPos: 6113,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 365,
2018-06-30 21:38:31 +00:00
EndLine: 365,
StartPos: 6100,
EndPos: 6112,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 365,
2018-06-30 21:38:31 +00:00
EndLine: 365,
StartPos: 6100,
EndPos: 6102,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 365,
EndLine: 365,
StartPos: 6100,
EndPos: 6102,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ExprArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 365,
EndLine: 365,
StartPos: 6105,
EndPos: 6112,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2018-02-14 14:23:10 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 366,
EndLine: 366,
StartPos: 6114,
EndPos: 6143,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 366,
2018-06-30 21:38:31 +00:00
EndLine: 366,
StartPos: 6121,
EndPos: 6142,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 366,
2018-06-30 21:38:31 +00:00
EndLine: 366,
StartPos: 6121,
EndPos: 6123,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 366,
EndLine: 366,
StartPos: 6121,
EndPos: 6123,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: []byte("$a"),
2020-05-13 17:18:53 +00:00
},
},
Expr: &ast.ExprArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 366,
EndLine: 366,
StartPos: 6126,
EndPos: 6142,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 366,
EndLine: 366,
StartPos: 6132,
EndPos: 6138,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Key: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 366,
EndLine: 366,
StartPos: 6132,
EndPos: 6133,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Val: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 366,
EndLine: 366,
StartPos: 6137,
EndPos: 6138,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 366,
EndLine: 366,
StartPos: 6140,
EndPos: 6141,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Val: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 366,
EndLine: 366,
StartPos: 6140,
EndPos: 6141,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 15:28:20 +00:00
},
},
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtStatic{
Node: ast.Node{
Position: &position.Position{
StartLine: 367,
EndLine: 367,
StartPos: 6144,
EndPos: 6171,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Vars: []ast.Vertex{
&ast.StmtStaticVar{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 367,
EndLine: 367,
StartPos: 6151,
EndPos: 6170,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 367,
EndLine: 367,
StartPos: 6151,
EndPos: 6153,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 367,
EndLine: 367,
StartPos: 6151,
EndPos: 6153,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 367,
EndLine: 367,
StartPos: 6156,
EndPos: 6170,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprShortArray{
Node: ast.Node{
Position: &position.Position{
StartLine: 367,
EndLine: 367,
StartPos: 6156,
EndPos: 6167,
2020-05-13 17:18:53 +00:00
},
},
Items: []ast.Vertex{
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 367,
EndLine: 367,
StartPos: 6157,
EndPos: 6158,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Val: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 367,
EndLine: 367,
StartPos: 6157,
EndPos: 6158,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.ExprArrayItem{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 367,
EndLine: 367,
StartPos: 6160,
EndPos: 6166,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Key: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 367,
EndLine: 367,
StartPos: 6160,
EndPos: 6161,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("2"),
},
Val: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 367,
EndLine: 367,
StartPos: 6165,
EndPos: 6166,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("2"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 15:28:20 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Dim: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 367,
EndLine: 367,
StartPos: 6168,
EndPos: 6169,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 15:28:20 +00:00
},
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtIf{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 369,
EndLine: 369,
StartPos: 6173,
EndPos: 6188,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Cond: &ast.ExprYield{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 369,
EndLine: 369,
StartPos: 6177,
EndPos: 6184,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Value: &ast.ScalarLnumber{
Node: ast.Node{
Position: &position.Position{
StartLine: 369,
EndLine: 369,
StartPos: 6183,
EndPos: 6184,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("1"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 19:02:57 +00:00
},
2020-05-13 17:18:53 +00:00
Stmt: &ast.StmtStmtList{
Node: ast.Node{
Position: &position.Position{
StartLine: 369,
EndLine: 369,
StartPos: 6186,
EndPos: 6188,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{},
2018-02-14 19:02:57 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 370,
EndLine: 370,
StartPos: 6189,
EndPos: 6200,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprStaticPropertyFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 370,
EndLine: 370,
StartPos: 6189,
EndPos: 6199,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.NameName{
Node: ast.Node{
Position: &position.Position{
StartLine: 370,
EndLine: 370,
StartPos: 6189,
EndPos: 6192,
2020-05-13 17:18:53 +00:00
},
},
Parts: []ast.Vertex{
&ast.NameNamePart{
Node: ast.Node{
Position: &position.Position{
StartLine: 370,
EndLine: 370,
StartPos: 6189,
EndPos: 6192,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("Foo"),
2018-06-24 07:19:44 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
Property: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 370,
EndLine: 370,
StartPos: 6194,
EndPos: 6199,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 370,
EndLine: 370,
StartPos: 6195,
EndPos: 6199,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 370,
EndLine: 370,
StartPos: 6195,
EndPos: 6199,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$bar"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-14 19:02:57 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 372,
EndLine: 372,
StartPos: 6202,
EndPos: 6209,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprFunctionCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 372,
EndLine: 372,
StartPos: 6202,
EndPos: 6208,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Function: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 372,
EndLine: 372,
StartPos: 6202,
EndPos: 6206,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 372,
EndLine: 372,
StartPos: 6202,
EndPos: 6206,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$foo"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 372,
EndLine: 372,
StartPos: 6206,
EndPos: 6208,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2018-02-14 19:02:57 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 373,
EndLine: 373,
StartPos: 6210,
EndPos: 6223,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 373,
EndLine: 373,
StartPos: 6210,
EndPos: 6222,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 373,
EndLine: 373,
StartPos: 6210,
EndPos: 6219,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprFunctionCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 373,
EndLine: 373,
StartPos: 6210,
EndPos: 6216,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Function: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 373,
EndLine: 373,
StartPos: 6210,
EndPos: 6214,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 373,
EndLine: 373,
StartPos: 6210,
EndPos: 6214,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$foo"),
2020-05-13 17:18:53 +00:00
},
},
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 373,
EndLine: 373,
StartPos: 6214,
EndPos: 6216,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 373,
EndLine: 373,
StartPos: 6217,
EndPos: 6218,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Dim: &ast.ScalarLnumber{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 373,
EndLine: 373,
StartPos: 6220,
EndPos: 6221,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Value: []byte("0"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 19:02:57 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 374,
EndLine: 374,
StartPos: 6224,
EndPos: 6231,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprArrayDimFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 374,
EndLine: 374,
StartPos: 6224,
EndPos: 6230,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Var: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 374,
EndLine: 374,
StartPos: 6224,
EndPos: 6226,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 374,
EndLine: 374,
StartPos: 6224,
EndPos: 6226,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Dim: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 374,
EndLine: 374,
StartPos: 6227,
EndPos: 6229,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 374,
EndLine: 374,
StartPos: 6227,
EndPos: 6229,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$b"),
2018-06-24 07:19:44 +00:00
},
},
2018-02-14 19:02:57 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 375,
EndLine: 375,
StartPos: 6232,
EndPos: 6238,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 375,
EndLine: 375,
StartPos: 6232,
EndPos: 6237,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 375,
EndLine: 375,
StartPos: 6234,
EndPos: 6236,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 375,
EndLine: 375,
StartPos: 6234,
EndPos: 6236,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$a"),
2018-06-24 07:19:44 +00:00
},
},
},
2018-02-14 19:02:57 +00:00
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 376,
EndLine: 376,
StartPos: 6239,
EndPos: 6254,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprStaticCall{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 376,
EndLine: 376,
StartPos: 6239,
EndPos: 6253,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 376,
EndLine: 376,
StartPos: 6239,
EndPos: 6243,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 376,
EndLine: 376,
StartPos: 6239,
EndPos: 6243,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$foo"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Call: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 376,
EndLine: 376,
StartPos: 6245,
EndPos: 6251,
2020-05-13 17:18:53 +00:00
},
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 376,
EndLine: 376,
StartPos: 6246,
EndPos: 6250,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
Value: []byte("$bar"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ArgumentList: &ast.ArgumentList{
Node: ast.Node{
Position: &position.Position{
StartLine: 376,
EndLine: 376,
StartPos: 6251,
EndPos: 6253,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
},
2018-02-14 19:02:57 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 377,
EndLine: 377,
StartPos: 6255,
EndPos: 6265,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ExprClassConstFetch{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 377,
EndLine: 377,
StartPos: 6255,
EndPos: 6264,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Class: &ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
2018-07-24 19:24:32 +00:00
StartLine: 377,
EndLine: 377,
StartPos: 6255,
EndPos: 6259,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 377,
EndLine: 377,
StartPos: 6255,
EndPos: 6259,
2020-05-13 17:18:53 +00:00
},
},
Value: []byte("$foo"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
ConstantName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 377,
EndLine: 377,
StartPos: 6261,
EndPos: 6264,
2020-05-13 17:18:53 +00:00
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("bar"),
2018-06-24 07:19:44 +00:00
},
2018-02-14 19:02:57 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtHaltCompiler{
Node: ast.Node{
Position: &position.Position{
StartLine: 379,
EndLine: 379,
StartPos: 6267,
EndPos: 6285,
2020-05-13 17:18:53 +00:00
},
2018-02-14 19:02:57 +00:00
},
},
2018-02-10 22:11:56 +00:00
},
}
2020-08-17 17:31:04 +00:00
lexer := scanner.NewLexer([]byte(src), "5.6", nil)
php5parser := php5.NewParser(lexer, nil)
2018-04-10 12:23:13 +00:00
php5parser.Parse()
actual := php5parser.GetRootNode()
traverser.NewDFS(new(visitor.FilterParserNodes)).Traverse(actual)
2020-08-17 17:31:04 +00:00
traverser.NewDFS(new(visitor.FilterTokens)).Traverse(actual)
assert.DeepEqual(t, expected, actual)
2018-02-10 22:11:56 +00:00
}
2018-04-05 10:47:36 +00:00
func TestPhp5Strings(t *testing.T) {
src := `<?
"test";
"\$test";
"
test
";
'$test';
'
$test
';
`
2020-05-13 17:18:53 +00:00
expected := &ast.Root{
Node: ast.Node{
Position: &position.Position{
StartLine: 2,
EndLine: 10,
StartPos: 5,
EndPos: 70,
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 2,
2018-06-25 12:38:31 +00:00
EndLine: 2,
2019-03-10 21:37:01 +00:00
StartPos: 5,
2020-05-13 17:18:53 +00:00
EndPos: 12,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarString{
Node: ast.Node{
Position: &position.Position{
StartLine: 2,
EndLine: 2,
StartPos: 5,
EndPos: 11,
},
},
Value: []byte("\"test\""),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 3,
2018-06-25 12:38:31 +00:00
EndLine: 3,
2019-03-10 21:37:01 +00:00
StartPos: 15,
2020-05-13 17:18:53 +00:00
EndPos: 24,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarString{
Node: ast.Node{
Position: &position.Position{
StartLine: 3,
EndLine: 3,
StartPos: 15,
EndPos: 23,
},
},
Value: []byte("\"\\$test\""),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 4,
2018-06-25 12:38:31 +00:00
EndLine: 6,
2019-03-10 21:37:01 +00:00
StartPos: 27,
2020-05-13 17:18:53 +00:00
EndPos: 41,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarString{
Node: ast.Node{
Position: &position.Position{
StartLine: 4,
EndLine: 6,
StartPos: 27,
EndPos: 40,
},
},
Value: []byte("\"\n\t\t\ttest\n\t\t\""),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 7,
2018-06-25 12:38:31 +00:00
EndLine: 7,
2019-03-10 21:37:01 +00:00
StartPos: 44,
2020-05-13 17:18:53 +00:00
EndPos: 52,
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarString{
Node: ast.Node{
Position: &position.Position{
StartLine: 7,
EndLine: 7,
StartPos: 44,
EndPos: 51,
},
},
Value: []byte("'$test'"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 8,
2018-06-25 12:38:31 +00:00
EndLine: 10,
2019-03-10 21:37:01 +00:00
StartPos: 55,
2020-05-13 17:18:53 +00:00
EndPos: 70,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarString{
Node: ast.Node{
Position: &position.Position{
StartLine: 8,
EndLine: 10,
StartPos: 55,
EndPos: 69,
},
},
Value: []byte("'\n\t\t\t$test\n\t\t'"),
2018-06-24 07:19:44 +00:00
},
2018-04-05 10:47:36 +00:00
},
},
}
2020-08-17 17:31:04 +00:00
lexer := scanner.NewLexer([]byte(src), "5.6", nil)
php5parser := php5.NewParser(lexer, nil)
2018-04-10 12:23:13 +00:00
php5parser.Parse()
actual := php5parser.GetRootNode()
traverser.NewDFS(new(visitor.FilterParserNodes)).Traverse(actual)
2020-08-17 17:31:04 +00:00
traverser.NewDFS(new(visitor.FilterTokens)).Traverse(actual)
assert.DeepEqual(t, expected, actual)
2018-04-05 10:47:36 +00:00
}
func TestPhp5Heredoc(t *testing.T) {
src := `<?
<<<CAD
CAD;
<<<CAD
hello
CAD;
<<<"CAD"
hello
CAD;
<<<"CAD"
hello $world
CAD;
<<<'CAD'
hello $world
CAD;
`
2020-05-13 17:18:53 +00:00
expected := &ast.Root{
Node: ast.Node{
Position: &position.Position{
StartLine: 2,
EndLine: 15,
StartPos: 5,
EndPos: 120,
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Stmts: []ast.Vertex{
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 2,
2018-06-25 12:38:31 +00:00
EndLine: 3,
2019-03-10 21:37:01 +00:00
StartPos: 5,
2020-05-13 17:18:53 +00:00
EndPos: 16,
2018-06-24 07:19:44 +00:00
},
2018-04-05 10:47:36 +00:00
},
2020-05-13 17:18:53 +00:00
Expr: &ast.ScalarHeredoc{
Node: ast.Node{
Position: &position.Position{
StartLine: 2,
EndLine: 3,
StartPos: 5,
EndPos: 15,
},
},
Label: []byte("<<<CAD\n"),
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 4,
2018-06-25 12:38:31 +00:00
EndLine: 6,
2019-03-10 21:37:01 +00:00
StartPos: 19,
2020-05-13 17:18:53 +00:00
EndPos: 37,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarHeredoc{
Node: ast.Node{
Position: &position.Position{
StartLine: 4,
EndLine: 6,
StartPos: 19,
EndPos: 36,
},
},
Label: []byte("<<<CAD\n"),
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 5,
EndLine: 5,
StartPos: 26,
EndPos: 33,
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("\thello\n"),
2018-06-24 07:19:44 +00:00
},
2018-04-05 10:47:36 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 7,
2018-06-25 12:38:31 +00:00
EndLine: 9,
2019-03-10 21:37:01 +00:00
StartPos: 40,
2020-05-13 17:18:53 +00:00
EndPos: 60,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarHeredoc{
Node: ast.Node{
Position: &position.Position{
StartLine: 7,
EndLine: 9,
StartPos: 40,
EndPos: 59,
},
},
Label: []byte("<<<\"CAD\"\n"),
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 8,
EndLine: 8,
StartPos: 49,
EndPos: 56,
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("\thello\n"),
2018-06-24 07:19:44 +00:00
},
2018-04-05 10:47:36 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 10,
2018-06-25 12:38:31 +00:00
EndLine: 12,
2019-03-10 21:37:01 +00:00
StartPos: 63,
2020-05-13 17:18:53 +00:00
EndPos: 90,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarHeredoc{
Node: ast.Node{
Position: &position.Position{
StartLine: 10,
EndLine: 12,
StartPos: 63,
EndPos: 89,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Label: []byte("<<<\"CAD\"\n"),
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 11,
EndLine: 11,
StartPos: 72,
EndPos: 79,
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("\thello "),
},
&ast.ExprVariable{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 11,
2018-06-25 12:38:31 +00:00
EndLine: 11,
2019-03-10 21:37:01 +00:00
StartPos: 79,
2018-06-25 12:38:31 +00:00
EndPos: 85,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
VarName: &ast.Identifier{
Node: ast.Node{
Position: &position.Position{
StartLine: 11,
EndLine: 11,
StartPos: 79,
EndPos: 85,
},
},
Value: []byte("$world"),
2018-06-24 07:19:44 +00:00
},
},
2020-05-13 17:18:53 +00:00
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 11,
EndLine: 11,
StartPos: 85,
EndPos: 86,
},
2019-03-10 21:37:01 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("\n"),
2019-03-10 21:37:01 +00:00
},
2018-04-05 10:47:36 +00:00
},
},
},
2020-05-13 17:18:53 +00:00
&ast.StmtExpression{
Node: ast.Node{
2018-06-24 07:19:44 +00:00
Position: &position.Position{
StartLine: 13,
2018-06-25 12:38:31 +00:00
EndLine: 15,
2019-03-10 21:37:01 +00:00
StartPos: 93,
2020-05-13 17:18:53 +00:00
EndPos: 120,
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
},
Expr: &ast.ScalarHeredoc{
Node: ast.Node{
Position: &position.Position{
StartLine: 13,
EndLine: 15,
StartPos: 93,
EndPos: 119,
},
},
Label: []byte("<<<'CAD'\n"),
Parts: []ast.Vertex{
&ast.ScalarEncapsedStringPart{
Node: ast.Node{
Position: &position.Position{
StartLine: 14,
EndLine: 14,
StartPos: 102,
EndPos: 116,
},
2018-06-24 07:19:44 +00:00
},
2020-05-13 17:18:53 +00:00
Value: []byte("\thello $world\n"),
2018-06-24 07:19:44 +00:00
},
2018-04-05 10:47:36 +00:00
},
},
},
},
}
2020-08-17 17:31:04 +00:00
lexer := scanner.NewLexer([]byte(src), "5.6", nil)
php5parser := php5.NewParser(lexer, nil)
2018-04-10 12:23:13 +00:00
php5parser.Parse()
actual := php5parser.GetRootNode()
traverser.NewDFS(new(visitor.FilterParserNodes)).Traverse(actual)
2020-08-17 17:31:04 +00:00
traverser.NewDFS(new(visitor.FilterTokens)).Traverse(actual)
assert.DeepEqual(t, expected, actual)
2018-04-05 10:47:36 +00:00
}
func TestPhp5ControlCharsErrors(t *testing.T) {
src := "<?php \004 echo $b; \"$a[\005test]\";"
expected := []*errors.Error{
{
Msg: "WARNING: Unexpected character in input: '\004' (ASCII=4)",
2020-05-13 17:18:53 +00:00
Pos: &position.Position{StartLine: 1, EndLine: 1, StartPos: 6, EndPos: 7},
},
{
Msg: "WARNING: Unexpected character in input: '\005' (ASCII=5)",
2020-05-13 17:18:53 +00:00
Pos: &position.Position{StartLine: 1, EndLine: 1, StartPos: 21, EndPos: 22},
},
}
2020-06-29 20:00:56 +00:00
parserErrors := []*errors.Error{}
errorHandlerFunc := func(e *errors.Error) {
parserErrors = append(parserErrors, e)
}
2020-08-17 17:31:04 +00:00
lexer := scanner.NewLexer([]byte(src), "5.6", errorHandlerFunc)
php5parser := php5.NewParser(lexer, errorHandlerFunc)
php5parser.Parse()
2020-06-29 20:00:56 +00:00
assert.DeepEqual(t, expected, parserErrors)
}