handle comments

This commit is contained in:
vadim 2018-01-05 17:03:59 +02:00
parent cd34d41218
commit 21c0c7c86e
167 changed files with 3547 additions and 1567 deletions

View File

@ -14,7 +14,7 @@ A Parser for PHP written in Go inspired by [Nikic PHP Parser](https://github.com
- [x] AST visitor - [x] AST visitor
- [x] AST dumper - [x] AST dumper
- [x] node position - [x] node position
- [ ] handling comments - [x] handling comments
- [ ] Tests - [ ] Tests
- [ ] Documentation - [ ] Documentation
- [ ] PHP 5 syntax analyzer - [ ] PHP 5 syntax analyzer

View File

@ -22,6 +22,13 @@ func (d dumper) EnterNode(n node.Node) bool {
} }
fmt.Println() fmt.Println()
if c := n.Comments(); c != nil && len(*c) > 0 {
fmt.Printf("%vcomments:\n", d.indent+" ")
for _, cc := range *c {
fmt.Printf("%v%q\n", d.indent+" ", cc)
}
}
return true return true
} }

View File

@ -1,13 +1,17 @@
package node package node
import "github.com/z7zmey/php-parser/comment"
type Argument struct { type Argument struct {
position *Position position *Position
comments *[]comment.Comment
Variadic bool Variadic bool
Expr Node Expr Node
} }
func NewArgument(Expression Node, Variadic bool) Node { func NewArgument(Expression Node, Variadic bool) Node {
return &Argument{ return &Argument{
nil,
nil, nil,
Variadic, Variadic,
Expression, Expression,
@ -29,6 +33,15 @@ func (n Argument) SetPosition(p *Position) Node {
return n return n
} }
func (n Argument) Comments() *[]comment.Comment {
return n.comments
}
func (n Argument) SetComments(c []comment.Comment) Node {
n.comments = &c
return n
}
func (n Argument) Walk(v Visitor) { func (n Argument) Walk(v Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Array struct { type Array struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Items []node.Node Items []node.Node
} }
func NewArray(Items []node.Node) node.Node { func NewArray(Items []node.Node) node.Node {
return &Array{ return &Array{
nil,
nil, nil,
Items, Items,
} }
@ -29,6 +32,15 @@ func (n Array) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Array) Comments() *[]comment.Comment {
return n.comments
}
func (n Array) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Array) Walk(v node.Visitor) { func (n Array) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,17 +1,20 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type ArrayDimFetch struct { type ArrayDimFetch struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Variable node.Node Variable node.Node
Dim node.Node Dim node.Node
} }
func NewArrayDimFetch(Variable node.Node, Dim node.Node) node.Node { func NewArrayDimFetch(Variable node.Node, Dim node.Node) node.Node {
return &ArrayDimFetch{ return &ArrayDimFetch{
nil,
nil, nil,
Variable, Variable,
Dim, Dim,
@ -31,6 +34,15 @@ func (n ArrayDimFetch) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n ArrayDimFetch) Comments() *[]comment.Comment {
return n.comments
}
func (n ArrayDimFetch) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n ArrayDimFetch) Walk(v node.Visitor) { func (n ArrayDimFetch) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,11 +1,13 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type ArrayItem struct { type ArrayItem struct {
position *node.Position position *node.Position
comments *[]comment.Comment
ByRef bool ByRef bool
Key node.Node Key node.Node
Val node.Node Val node.Node
@ -13,6 +15,7 @@ type ArrayItem struct {
func NewArrayItem(Key node.Node, Val node.Node, ByRef bool) node.Node { func NewArrayItem(Key node.Node, Val node.Node, ByRef bool) node.Node {
return &ArrayItem{ return &ArrayItem{
nil,
nil, nil,
ByRef, ByRef,
Key, Key,
@ -35,6 +38,15 @@ func (n ArrayItem) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n ArrayItem) Comments() *[]comment.Comment {
return n.comments
}
func (n ArrayItem) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n ArrayItem) Walk(v node.Visitor) { func (n ArrayItem) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Assign struct {
func NewAssign(Variable node.Node, Expression node.Node) node.Node { func NewAssign(Variable node.Node, Expression node.Node) node.Node {
return &Assign{ return &Assign{
AssignOp{ AssignOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Assign) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Assign) Comments() *[]comment.Comment {
return n.comments
}
func (n Assign) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Assign) Walk(v node.Visitor) { func (n Assign) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,11 +1,13 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type AssignOp struct { type AssignOp struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Variable node.Node Variable node.Node
Expression node.Node Expression node.Node
} }

View File

@ -1,6 +1,7 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type AssignRef struct {
func NewAssignRef(Variable node.Node, Expression node.Node) node.Node { func NewAssignRef(Variable node.Node, Expression node.Node) node.Node {
return &AssignRef{ return &AssignRef{
AssignOp{ AssignOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n AssignRef) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n AssignRef) Comments() *[]comment.Comment {
return n.comments
}
func (n AssignRef) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n AssignRef) Walk(v node.Visitor) { func (n AssignRef) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type BitwiseAnd struct {
func NewBitwiseAnd(Variable node.Node, Expression node.Node) node.Node { func NewBitwiseAnd(Variable node.Node, Expression node.Node) node.Node {
return &BitwiseAnd{ return &BitwiseAnd{
AssignOp{ AssignOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n BitwiseAnd) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n BitwiseAnd) Comments() *[]comment.Comment {
return n.comments
}
func (n BitwiseAnd) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n BitwiseAnd) Walk(v node.Visitor) { func (n BitwiseAnd) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type BitwiseOr struct {
func NewBitwiseOr(Variable node.Node, Expression node.Node) node.Node { func NewBitwiseOr(Variable node.Node, Expression node.Node) node.Node {
return &BitwiseOr{ return &BitwiseOr{
AssignOp{ AssignOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n BitwiseOr) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n BitwiseOr) Comments() *[]comment.Comment {
return n.comments
}
func (n BitwiseOr) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n BitwiseOr) Walk(v node.Visitor) { func (n BitwiseOr) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type BitwiseXor struct {
func NewBitwiseXor(Variable node.Node, Expression node.Node) node.Node { func NewBitwiseXor(Variable node.Node, Expression node.Node) node.Node {
return &BitwiseXor{ return &BitwiseXor{
AssignOp{ AssignOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n BitwiseXor) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n BitwiseXor) Comments() *[]comment.Comment {
return n.comments
}
func (n BitwiseXor) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n BitwiseXor) Walk(v node.Visitor) { func (n BitwiseXor) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Concat struct {
func NewConcat(Variable node.Node, Expression node.Node) node.Node { func NewConcat(Variable node.Node, Expression node.Node) node.Node {
return &Concat{ return &Concat{
AssignOp{ AssignOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Concat) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Concat) Comments() *[]comment.Comment {
return n.comments
}
func (n Concat) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Concat) Walk(v node.Visitor) { func (n Concat) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Div struct {
func NewDiv(Variable node.Node, Expression node.Node) node.Node { func NewDiv(Variable node.Node, Expression node.Node) node.Node {
return &Div{ return &Div{
AssignOp{ AssignOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Div) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Div) Comments() *[]comment.Comment {
return n.comments
}
func (n Div) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Div) Walk(v node.Visitor) { func (n Div) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Minus struct {
func NewMinus(Variable node.Node, Expression node.Node) node.Node { func NewMinus(Variable node.Node, Expression node.Node) node.Node {
return &Minus{ return &Minus{
AssignOp{ AssignOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Minus) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Minus) Comments() *[]comment.Comment {
return n.comments
}
func (n Minus) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Minus) Walk(v node.Visitor) { func (n Minus) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Mod struct {
func NewMod(Variable node.Node, Expression node.Node) node.Node { func NewMod(Variable node.Node, Expression node.Node) node.Node {
return &Mod{ return &Mod{
AssignOp{ AssignOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Mod) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Mod) Comments() *[]comment.Comment {
return n.comments
}
func (n Mod) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Mod) Walk(v node.Visitor) { func (n Mod) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Mul struct {
func NewMul(Variable node.Node, Expression node.Node) node.Node { func NewMul(Variable node.Node, Expression node.Node) node.Node {
return &Mul{ return &Mul{
AssignOp{ AssignOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Mul) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Mul) Comments() *[]comment.Comment {
return n.comments
}
func (n Mul) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Mul) Walk(v node.Visitor) { func (n Mul) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Plus struct {
func NewPlus(Variable node.Node, Expression node.Node) node.Node { func NewPlus(Variable node.Node, Expression node.Node) node.Node {
return &Plus{ return &Plus{
AssignOp{ AssignOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Plus) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Plus) Comments() *[]comment.Comment {
return n.comments
}
func (n Plus) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Plus) Walk(v node.Visitor) { func (n Plus) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Pow struct {
func NewPow(Variable node.Node, Expression node.Node) node.Node { func NewPow(Variable node.Node, Expression node.Node) node.Node {
return &Pow{ return &Pow{
AssignOp{ AssignOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Pow) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Pow) Comments() *[]comment.Comment {
return n.comments
}
func (n Pow) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Pow) Walk(v node.Visitor) { func (n Pow) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type ShiftLeft struct {
func NewShiftLeft(Variable node.Node, Expression node.Node) node.Node { func NewShiftLeft(Variable node.Node, Expression node.Node) node.Node {
return &ShiftLeft{ return &ShiftLeft{
AssignOp{ AssignOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n ShiftLeft) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n ShiftLeft) Comments() *[]comment.Comment {
return n.comments
}
func (n ShiftLeft) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n ShiftLeft) Walk(v node.Visitor) { func (n ShiftLeft) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package assign_op package assign_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type ShiftRight struct {
func NewShiftRight(Variable node.Node, Expression node.Node) node.Node { func NewShiftRight(Variable node.Node, Expression node.Node) node.Node {
return &ShiftRight{ return &ShiftRight{
AssignOp{ AssignOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n ShiftRight) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n ShiftRight) Comments() *[]comment.Comment {
return n.comments
}
func (n ShiftRight) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n ShiftRight) Walk(v node.Visitor) { func (n ShiftRight) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,11 +1,13 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type BinaryOp struct { type BinaryOp struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Left node.Node Left node.Node
Right node.Node Right node.Node
} }

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type BitwiseAnd struct {
func NewBitwiseAnd(Variable node.Node, Expression node.Node) node.Node { func NewBitwiseAnd(Variable node.Node, Expression node.Node) node.Node {
return &BitwiseAnd{ return &BitwiseAnd{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n BitwiseAnd) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n BitwiseAnd) Comments() *[]comment.Comment {
return n.comments
}
func (n BitwiseAnd) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n BitwiseAnd) Walk(v node.Visitor) { func (n BitwiseAnd) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type BitwiseOr struct {
func NewBitwiseOr(Variable node.Node, Expression node.Node) node.Node { func NewBitwiseOr(Variable node.Node, Expression node.Node) node.Node {
return &BitwiseOr{ return &BitwiseOr{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n BitwiseOr) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n BitwiseOr) Comments() *[]comment.Comment {
return n.comments
}
func (n BitwiseOr) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n BitwiseOr) Walk(v node.Visitor) { func (n BitwiseOr) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type BitwiseXor struct {
func NewBitwiseXor(Variable node.Node, Expression node.Node) node.Node { func NewBitwiseXor(Variable node.Node, Expression node.Node) node.Node {
return &BitwiseXor{ return &BitwiseXor{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n BitwiseXor) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n BitwiseXor) Comments() *[]comment.Comment {
return n.comments
}
func (n BitwiseXor) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n BitwiseXor) Walk(v node.Visitor) { func (n BitwiseXor) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type BooleanAnd struct {
func NewBooleanAnd(Variable node.Node, Expression node.Node) node.Node { func NewBooleanAnd(Variable node.Node, Expression node.Node) node.Node {
return &BooleanAnd{ return &BooleanAnd{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n BooleanAnd) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n BooleanAnd) Comments() *[]comment.Comment {
return n.comments
}
func (n BooleanAnd) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n BooleanAnd) Walk(v node.Visitor) { func (n BooleanAnd) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type BooleanOr struct {
func NewBooleanOr(Variable node.Node, Expression node.Node) node.Node { func NewBooleanOr(Variable node.Node, Expression node.Node) node.Node {
return &BooleanOr{ return &BooleanOr{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n BooleanOr) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n BooleanOr) Comments() *[]comment.Comment {
return n.comments
}
func (n BooleanOr) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n BooleanOr) Walk(v node.Visitor) { func (n BooleanOr) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Coalesce struct {
func NewCoalesce(Variable node.Node, Expression node.Node) node.Node { func NewCoalesce(Variable node.Node, Expression node.Node) node.Node {
return &Coalesce{ return &Coalesce{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Coalesce) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Coalesce) Comments() *[]comment.Comment {
return n.comments
}
func (n Coalesce) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Coalesce) Walk(v node.Visitor) { func (n Coalesce) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Concat struct {
func NewConcat(Variable node.Node, Expression node.Node) node.Node { func NewConcat(Variable node.Node, Expression node.Node) node.Node {
return &Concat{ return &Concat{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Concat) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Concat) Comments() *[]comment.Comment {
return n.comments
}
func (n Concat) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Concat) Walk(v node.Visitor) { func (n Concat) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Div struct {
func NewDiv(Variable node.Node, Expression node.Node) node.Node { func NewDiv(Variable node.Node, Expression node.Node) node.Node {
return &Div{ return &Div{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Div) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Div) Comments() *[]comment.Comment {
return n.comments
}
func (n Div) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Div) Walk(v node.Visitor) { func (n Div) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Equal struct {
func NewEqual(Variable node.Node, Expression node.Node) node.Node { func NewEqual(Variable node.Node, Expression node.Node) node.Node {
return &Equal{ return &Equal{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Equal) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Equal) Comments() *[]comment.Comment {
return n.comments
}
func (n Equal) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Equal) Walk(v node.Visitor) { func (n Equal) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Greater struct {
func NewGreater(Variable node.Node, Expression node.Node) node.Node { func NewGreater(Variable node.Node, Expression node.Node) node.Node {
return &Greater{ return &Greater{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Greater) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Greater) Comments() *[]comment.Comment {
return n.comments
}
func (n Greater) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Greater) Walk(v node.Visitor) { func (n Greater) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type GreaterOrEqual struct {
func NewGreaterOrEqual(Variable node.Node, Expression node.Node) node.Node { func NewGreaterOrEqual(Variable node.Node, Expression node.Node) node.Node {
return &GreaterOrEqual{ return &GreaterOrEqual{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n GreaterOrEqual) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n GreaterOrEqual) Comments() *[]comment.Comment {
return n.comments
}
func (n GreaterOrEqual) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n GreaterOrEqual) Walk(v node.Visitor) { func (n GreaterOrEqual) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Identical struct {
func NewIdentical(Variable node.Node, Expression node.Node) node.Node { func NewIdentical(Variable node.Node, Expression node.Node) node.Node {
return &Identical{ return &Identical{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Identical) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Identical) Comments() *[]comment.Comment {
return n.comments
}
func (n Identical) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Identical) Walk(v node.Visitor) { func (n Identical) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type LogicalAnd struct {
func NewLogicalAnd(Variable node.Node, Expression node.Node) node.Node { func NewLogicalAnd(Variable node.Node, Expression node.Node) node.Node {
return &LogicalAnd{ return &LogicalAnd{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n LogicalAnd) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n LogicalAnd) Comments() *[]comment.Comment {
return n.comments
}
func (n LogicalAnd) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n LogicalAnd) Walk(v node.Visitor) { func (n LogicalAnd) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type LogicalOr struct {
func NewLogicalOr(Variable node.Node, Expression node.Node) node.Node { func NewLogicalOr(Variable node.Node, Expression node.Node) node.Node {
return &LogicalOr{ return &LogicalOr{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n LogicalOr) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n LogicalOr) Comments() *[]comment.Comment {
return n.comments
}
func (n LogicalOr) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n LogicalOr) Walk(v node.Visitor) { func (n LogicalOr) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type LogicalXor struct {
func NewLogicalXor(Variable node.Node, Expression node.Node) node.Node { func NewLogicalXor(Variable node.Node, Expression node.Node) node.Node {
return &LogicalXor{ return &LogicalXor{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n LogicalXor) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n LogicalXor) Comments() *[]comment.Comment {
return n.comments
}
func (n LogicalXor) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n LogicalXor) Walk(v node.Visitor) { func (n LogicalXor) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Minus struct {
func NewMinus(Variable node.Node, Expression node.Node) node.Node { func NewMinus(Variable node.Node, Expression node.Node) node.Node {
return &Minus{ return &Minus{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Minus) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Minus) Comments() *[]comment.Comment {
return n.comments
}
func (n Minus) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Minus) Walk(v node.Visitor) { func (n Minus) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Mod struct {
func NewMod(Variable node.Node, Expression node.Node) node.Node { func NewMod(Variable node.Node, Expression node.Node) node.Node {
return &Mod{ return &Mod{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Mod) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Mod) Comments() *[]comment.Comment {
return n.comments
}
func (n Mod) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Mod) Walk(v node.Visitor) { func (n Mod) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Mul struct {
func NewMul(Variable node.Node, Expression node.Node) node.Node { func NewMul(Variable node.Node, Expression node.Node) node.Node {
return &Mul{ return &Mul{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Mul) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Mul) Comments() *[]comment.Comment {
return n.comments
}
func (n Mul) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Mul) Walk(v node.Visitor) { func (n Mul) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type NotEqual struct {
func NewNotEqual(Variable node.Node, Expression node.Node) node.Node { func NewNotEqual(Variable node.Node, Expression node.Node) node.Node {
return &NotEqual{ return &NotEqual{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n NotEqual) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n NotEqual) Comments() *[]comment.Comment {
return n.comments
}
func (n NotEqual) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n NotEqual) Walk(v node.Visitor) { func (n NotEqual) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type NotIdentical struct {
func NewNotIdentical(Variable node.Node, Expression node.Node) node.Node { func NewNotIdentical(Variable node.Node, Expression node.Node) node.Node {
return &NotIdentical{ return &NotIdentical{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n NotIdentical) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n NotIdentical) Comments() *[]comment.Comment {
return n.comments
}
func (n NotIdentical) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n NotIdentical) Walk(v node.Visitor) { func (n NotIdentical) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Plus struct {
func NewPlus(Variable node.Node, Expression node.Node) node.Node { func NewPlus(Variable node.Node, Expression node.Node) node.Node {
return &Plus{ return &Plus{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Plus) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Plus) Comments() *[]comment.Comment {
return n.comments
}
func (n Plus) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Plus) Walk(v node.Visitor) { func (n Plus) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Pow struct {
func NewPow(Variable node.Node, Expression node.Node) node.Node { func NewPow(Variable node.Node, Expression node.Node) node.Node {
return &Pow{ return &Pow{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Pow) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Pow) Comments() *[]comment.Comment {
return n.comments
}
func (n Pow) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Pow) Walk(v node.Visitor) { func (n Pow) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type ShiftLeft struct {
func NewShiftLeft(Variable node.Node, Expression node.Node) node.Node { func NewShiftLeft(Variable node.Node, Expression node.Node) node.Node {
return &ShiftLeft{ return &ShiftLeft{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n ShiftLeft) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n ShiftLeft) Comments() *[]comment.Comment {
return n.comments
}
func (n ShiftLeft) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n ShiftLeft) Walk(v node.Visitor) { func (n ShiftLeft) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type ShiftRight struct {
func NewShiftRight(Variable node.Node, Expression node.Node) node.Node { func NewShiftRight(Variable node.Node, Expression node.Node) node.Node {
return &ShiftRight{ return &ShiftRight{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n ShiftRight) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n ShiftRight) Comments() *[]comment.Comment {
return n.comments
}
func (n ShiftRight) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n ShiftRight) Walk(v node.Visitor) { func (n ShiftRight) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Smaller struct {
func NewSmaller(Variable node.Node, Expression node.Node) node.Node { func NewSmaller(Variable node.Node, Expression node.Node) node.Node {
return &Smaller{ return &Smaller{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Smaller) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Smaller) Comments() *[]comment.Comment {
return n.comments
}
func (n Smaller) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Smaller) Walk(v node.Visitor) { func (n Smaller) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type SmallerOrEqual struct {
func NewSmallerOrEqual(Variable node.Node, Expression node.Node) node.Node { func NewSmallerOrEqual(Variable node.Node, Expression node.Node) node.Node {
return &SmallerOrEqual{ return &SmallerOrEqual{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n SmallerOrEqual) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n SmallerOrEqual) Comments() *[]comment.Comment {
return n.comments
}
func (n SmallerOrEqual) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n SmallerOrEqual) Walk(v node.Visitor) { func (n SmallerOrEqual) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package binary_op package binary_op
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type Spaceship struct {
func NewSpaceship(Variable node.Node, Expression node.Node) node.Node { func NewSpaceship(Variable node.Node, Expression node.Node) node.Node {
return &Spaceship{ return &Spaceship{
BinaryOp{ BinaryOp{
nil,
nil, nil,
Variable, Variable,
Expression, Expression,
@ -31,6 +33,15 @@ func (n Spaceship) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Spaceship) Comments() *[]comment.Comment {
return n.comments
}
func (n Spaceship) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Spaceship) Walk(v node.Visitor) { func (n Spaceship) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type BitwiseNot struct { type BitwiseNot struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }
func NewBitwiseNot(Expression node.Node) node.Node { func NewBitwiseNot(Expression node.Node) node.Node {
return &BitwiseNot{ return &BitwiseNot{
nil,
nil, nil,
Expression, Expression,
} }
@ -29,6 +32,15 @@ func (n BitwiseNot) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n BitwiseNot) Comments() *[]comment.Comment {
return n.comments
}
func (n BitwiseNot) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n BitwiseNot) Walk(v node.Visitor) { func (n BitwiseNot) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type BooleanNot struct { type BooleanNot struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }
func NewBooleanNot(Expression node.Node) node.Node { func NewBooleanNot(Expression node.Node) node.Node {
return &BooleanNot{ return &BooleanNot{
nil,
nil, nil,
Expression, Expression,
} }
@ -29,6 +32,15 @@ func (n BooleanNot) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n BooleanNot) Comments() *[]comment.Comment {
return n.comments
}
func (n BooleanNot) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n BooleanNot) Walk(v node.Visitor) { func (n BooleanNot) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,10 +1,12 @@
package cast package cast
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Cast struct { type Cast struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }

View File

@ -1,6 +1,7 @@
package cast package cast
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type CastArray struct {
func NewCastArray(Expr node.Node) node.Node { func NewCastArray(Expr node.Node) node.Node {
return &CastArray{ return &CastArray{
Cast{ Cast{
nil,
nil, nil,
Expr, Expr,
}, },
@ -30,6 +32,15 @@ func (n CastArray) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n CastArray) Comments() *[]comment.Comment {
return n.comments
}
func (n CastArray) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n CastArray) Walk(v node.Visitor) { func (n CastArray) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package cast package cast
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type CastBool struct {
func NewCastBool(Expr node.Node) node.Node { func NewCastBool(Expr node.Node) node.Node {
return &CastBool{ return &CastBool{
Cast{ Cast{
nil,
nil, nil,
Expr, Expr,
}, },
@ -30,6 +32,15 @@ func (n CastBool) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n CastBool) Comments() *[]comment.Comment {
return n.comments
}
func (n CastBool) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n CastBool) Walk(v node.Visitor) { func (n CastBool) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package cast package cast
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type CastDouble struct {
func NewCastDouble(Expr node.Node) node.Node { func NewCastDouble(Expr node.Node) node.Node {
return &CastDouble{ return &CastDouble{
Cast{ Cast{
nil,
nil, nil,
Expr, Expr,
}, },
@ -30,6 +32,15 @@ func (n CastDouble) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n CastDouble) Comments() *[]comment.Comment {
return n.comments
}
func (n CastDouble) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n CastDouble) Walk(v node.Visitor) { func (n CastDouble) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package cast package cast
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type CastInt struct {
func NewCastInt(Expr node.Node) node.Node { func NewCastInt(Expr node.Node) node.Node {
return &CastInt{ return &CastInt{
Cast{ Cast{
nil,
nil, nil,
Expr, Expr,
}, },
@ -30,6 +32,15 @@ func (n CastInt) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n CastInt) Comments() *[]comment.Comment {
return n.comments
}
func (n CastInt) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n CastInt) Walk(v node.Visitor) { func (n CastInt) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package cast package cast
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type CastObject struct {
func NewCastObject(Expr node.Node) node.Node { func NewCastObject(Expr node.Node) node.Node {
return &CastObject{ return &CastObject{
Cast{ Cast{
nil,
nil, nil,
Expr, Expr,
}, },
@ -30,6 +32,15 @@ func (n CastObject) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n CastObject) Comments() *[]comment.Comment {
return n.comments
}
func (n CastObject) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n CastObject) Walk(v node.Visitor) { func (n CastObject) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package cast package cast
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type CastString struct {
func NewCastString(Expr node.Node) node.Node { func NewCastString(Expr node.Node) node.Node {
return &CastString{ return &CastString{
Cast{ Cast{
nil,
nil, nil,
Expr, Expr,
}, },
@ -30,6 +32,15 @@ func (n CastString) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n CastString) Comments() *[]comment.Comment {
return n.comments
}
func (n CastString) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n CastString) Walk(v node.Visitor) { func (n CastString) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,6 +1,7 @@
package cast package cast
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
@ -11,6 +12,7 @@ type CastUnset struct {
func NewCastUnset(Expr node.Node) node.Node { func NewCastUnset(Expr node.Node) node.Node {
return &CastUnset{ return &CastUnset{
Cast{ Cast{
nil,
nil, nil,
Expr, Expr,
}, },
@ -30,6 +32,15 @@ func (n CastUnset) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n CastUnset) Comments() *[]comment.Comment {
return n.comments
}
func (n CastUnset) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n CastUnset) Walk(v node.Visitor) { func (n CastUnset) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,17 +1,20 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type ClassConstFetch struct { type ClassConstFetch struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Class node.Node Class node.Node
ConstantName node.Node ConstantName node.Node
} }
func NewClassConstFetch(Class node.Node, ConstantName node.Node) node.Node { func NewClassConstFetch(Class node.Node, ConstantName node.Node) node.Node {
return &ClassConstFetch{ return &ClassConstFetch{
nil,
nil, nil,
Class, Class,
ConstantName, ConstantName,
@ -31,6 +34,15 @@ func (n ClassConstFetch) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n ClassConstFetch) Comments() *[]comment.Comment {
return n.comments
}
func (n ClassConstFetch) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n ClassConstFetch) Walk(v node.Visitor) { func (n ClassConstFetch) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Clone struct { type Clone struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }
func NewClone(Expression node.Node) node.Node { func NewClone(Expression node.Node) node.Node {
return &Clone{ return &Clone{
nil,
nil, nil,
Expression, Expression,
} }
@ -29,6 +32,15 @@ func (n Clone) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Clone) Comments() *[]comment.Comment {
return n.comments
}
func (n Clone) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Clone) Walk(v node.Visitor) { func (n Clone) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,11 +1,13 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Closure struct { type Closure struct {
position *node.Position position *node.Position
comments *[]comment.Comment
ReturnsRef bool ReturnsRef bool
Static bool Static bool
PhpDocComment string PhpDocComment string
@ -17,6 +19,7 @@ type Closure struct {
func NewClosure(Params []node.Node, Uses []node.Node, ReturnType node.Node, Stmts []node.Node, Static bool, ReturnsRef bool, PhpDocComment string) node.Node { func NewClosure(Params []node.Node, Uses []node.Node, ReturnType node.Node, Stmts []node.Node, Static bool, ReturnsRef bool, PhpDocComment string) node.Node {
return &Closure{ return &Closure{
nil,
nil, nil,
ReturnsRef, ReturnsRef,
Static, Static,
@ -45,6 +48,15 @@ func (n Closure) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Closure) Comments() *[]comment.Comment {
return n.comments
}
func (n Closure) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Closure) Walk(v node.Visitor) { func (n Closure) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,17 +1,20 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type ClusureUse struct { type ClusureUse struct {
position *node.Position position *node.Position
comments *[]comment.Comment
ByRef bool ByRef bool
Variable node.Node Variable node.Node
} }
func NewClusureUse(Variable node.Node, ByRef bool) node.Node { func NewClusureUse(Variable node.Node, ByRef bool) node.Node {
return &ClusureUse{ return &ClusureUse{
nil,
nil, nil,
ByRef, ByRef,
Variable, Variable,
@ -33,6 +36,15 @@ func (n ClusureUse) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n ClusureUse) Comments() *[]comment.Comment {
return n.comments
}
func (n ClusureUse) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n ClusureUse) Walk(v node.Visitor) { func (n ClusureUse) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type ConstFetch struct { type ConstFetch struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Constant node.Node Constant node.Node
} }
func NewConstFetch(Constant node.Node) node.Node { func NewConstFetch(Constant node.Node) node.Node {
return &ConstFetch{ return &ConstFetch{
nil,
nil, nil,
Constant, Constant,
} }
@ -29,6 +32,15 @@ func (n ConstFetch) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n ConstFetch) Comments() *[]comment.Comment {
return n.comments
}
func (n ConstFetch) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n ConstFetch) Walk(v node.Visitor) { func (n ConstFetch) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Empty struct { type Empty struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }
func NewEmpty(Expression node.Node) node.Node { func NewEmpty(Expression node.Node) node.Node {
return &Empty{ return &Empty{
nil,
nil, nil,
Expression, Expression,
} }
@ -29,6 +32,15 @@ func (n Empty) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Empty) Comments() *[]comment.Comment {
return n.comments
}
func (n Empty) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Empty) Walk(v node.Visitor) { func (n Empty) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type ErrorSuppress struct { type ErrorSuppress struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }
func NewErrorSuppress(Expression node.Node) node.Node { func NewErrorSuppress(Expression node.Node) node.Node {
return &ErrorSuppress{ return &ErrorSuppress{
nil,
nil, nil,
Expression, Expression,
} }
@ -29,6 +32,15 @@ func (n ErrorSuppress) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n ErrorSuppress) Comments() *[]comment.Comment {
return n.comments
}
func (n ErrorSuppress) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n ErrorSuppress) Walk(v node.Visitor) { func (n ErrorSuppress) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Eval struct { type Eval struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }
func NewEval(Expression node.Node) node.Node { func NewEval(Expression node.Node) node.Node {
return &Eval{ return &Eval{
nil,
nil, nil,
Expression, Expression,
} }
@ -29,6 +32,15 @@ func (n Eval) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Eval) Comments() *[]comment.Comment {
return n.comments
}
func (n Eval) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Eval) Walk(v node.Visitor) { func (n Eval) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,17 +1,20 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Exit struct { type Exit struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
IsDie bool IsDie bool
} }
func NewExit(Expr node.Node, IsDie bool) node.Node { func NewExit(Expr node.Node, IsDie bool) node.Node {
return &Exit{ return &Exit{
nil,
nil, nil,
Expr, Expr,
IsDie, IsDie,
@ -33,6 +36,15 @@ func (n Exit) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Exit) Comments() *[]comment.Comment {
return n.comments
}
func (n Exit) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Exit) Walk(v node.Visitor) { func (n Exit) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,17 +1,20 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type FunctionCall struct { type FunctionCall struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Function node.Node Function node.Node
Arguments []node.Node Arguments []node.Node
} }
func NewFunctionCall(Function node.Node, Arguments []node.Node) node.Node { func NewFunctionCall(Function node.Node, Arguments []node.Node) node.Node {
return &FunctionCall{ return &FunctionCall{
nil,
nil, nil,
Function, Function,
Arguments, Arguments,
@ -31,6 +34,15 @@ func (n FunctionCall) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n FunctionCall) Comments() *[]comment.Comment {
return n.comments
}
func (n FunctionCall) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n FunctionCall) Walk(v node.Visitor) { func (n FunctionCall) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Include struct { type Include struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }
func NewInclude(Expression node.Node) node.Node { func NewInclude(Expression node.Node) node.Node {
return &Include{ return &Include{
nil,
nil, nil,
Expression, Expression,
} }
@ -29,6 +32,15 @@ func (n Include) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Include) Comments() *[]comment.Comment {
return n.comments
}
func (n Include) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Include) Walk(v node.Visitor) { func (n Include) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type IncludeOnce struct { type IncludeOnce struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }
func NewIncludeOnce(Expression node.Node) node.Node { func NewIncludeOnce(Expression node.Node) node.Node {
return &IncludeOnce{ return &IncludeOnce{
nil,
nil, nil,
Expression, Expression,
} }
@ -29,6 +32,15 @@ func (n IncludeOnce) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n IncludeOnce) Comments() *[]comment.Comment {
return n.comments
}
func (n IncludeOnce) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n IncludeOnce) Walk(v node.Visitor) { func (n IncludeOnce) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,17 +1,20 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type InstanceOf struct { type InstanceOf struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
Class node.Node Class node.Node
} }
func NewInstanceOf(Expr node.Node, Class node.Node) node.Node { func NewInstanceOf(Expr node.Node, Class node.Node) node.Node {
return &InstanceOf{ return &InstanceOf{
nil,
nil, nil,
Expr, Expr,
Class, Class,
@ -31,6 +34,15 @@ func (n InstanceOf) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n InstanceOf) Comments() *[]comment.Comment {
return n.comments
}
func (n InstanceOf) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n InstanceOf) Walk(v node.Visitor) { func (n InstanceOf) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Isset struct { type Isset struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Variables []node.Node Variables []node.Node
} }
func NewIsset(Variables []node.Node) node.Node { func NewIsset(Variables []node.Node) node.Node {
return &Isset{ return &Isset{
nil,
nil, nil,
Variables, Variables,
} }
@ -29,6 +32,15 @@ func (n Isset) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Isset) Comments() *[]comment.Comment {
return n.comments
}
func (n Isset) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Isset) Walk(v node.Visitor) { func (n Isset) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type List struct { type List struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Items []node.Node Items []node.Node
} }
func NewList(Items []node.Node) node.Node { func NewList(Items []node.Node) node.Node {
return &List{ return &List{
nil,
nil, nil,
Items, Items,
} }
@ -29,6 +32,15 @@ func (n List) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n List) Comments() *[]comment.Comment {
return n.comments
}
func (n List) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n List) Walk(v node.Visitor) { func (n List) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,11 +1,13 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type MethodCall struct { type MethodCall struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Variable node.Node Variable node.Node
Method node.Node Method node.Node
Arguments []node.Node Arguments []node.Node
@ -13,6 +15,7 @@ type MethodCall struct {
func NewMethodCall(Variable node.Node, Method node.Node, Arguments []node.Node) node.Node { func NewMethodCall(Variable node.Node, Method node.Node, Arguments []node.Node) node.Node {
return &MethodCall{ return &MethodCall{
nil,
nil, nil,
Variable, Variable,
Method, Method,
@ -33,6 +36,15 @@ func (n MethodCall) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n MethodCall) Comments() *[]comment.Comment {
return n.comments
}
func (n MethodCall) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n MethodCall) Walk(v node.Visitor) { func (n MethodCall) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,17 +1,20 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type New struct { type New struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Class node.Node Class node.Node
Arguments []node.Node Arguments []node.Node
} }
func NewNew(Class node.Node, Arguments []node.Node) node.Node { func NewNew(Class node.Node, Arguments []node.Node) node.Node {
return &New{ return &New{
nil,
nil, nil,
Class, Class,
Arguments, Arguments,
@ -31,6 +34,15 @@ func (n New) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n New) Comments() *[]comment.Comment {
return n.comments
}
func (n New) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n New) Walk(v node.Visitor) { func (n New) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type PostDec struct { type PostDec struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Variable node.Node Variable node.Node
} }
func NewPostDec(Variable node.Node) node.Node { func NewPostDec(Variable node.Node) node.Node {
return &PostDec{ return &PostDec{
nil,
nil, nil,
Variable, Variable,
} }
@ -29,6 +32,15 @@ func (n PostDec) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n PostDec) Comments() *[]comment.Comment {
return n.comments
}
func (n PostDec) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n PostDec) Walk(v node.Visitor) { func (n PostDec) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type PostInc struct { type PostInc struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Variable node.Node Variable node.Node
} }
func NewPostInc(Variable node.Node) node.Node { func NewPostInc(Variable node.Node) node.Node {
return &PostInc{ return &PostInc{
nil,
nil, nil,
Variable, Variable,
} }
@ -29,6 +32,15 @@ func (n PostInc) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n PostInc) Comments() *[]comment.Comment {
return n.comments
}
func (n PostInc) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n PostInc) Walk(v node.Visitor) { func (n PostInc) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type PreDec struct { type PreDec struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Variable node.Node Variable node.Node
} }
func NewPreDec(Variable node.Node) node.Node { func NewPreDec(Variable node.Node) node.Node {
return &PreDec{ return &PreDec{
nil,
nil, nil,
Variable, Variable,
} }
@ -29,6 +32,15 @@ func (n PreDec) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n PreDec) Comments() *[]comment.Comment {
return n.comments
}
func (n PreDec) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n PreDec) Walk(v node.Visitor) { func (n PreDec) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type PreInc struct { type PreInc struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Variable node.Node Variable node.Node
} }
func NewPreInc(Variable node.Node) node.Node { func NewPreInc(Variable node.Node) node.Node {
return &PreInc{ return &PreInc{
nil,
nil, nil,
Variable, Variable,
} }
@ -29,6 +32,15 @@ func (n PreInc) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n PreInc) Comments() *[]comment.Comment {
return n.comments
}
func (n PreInc) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n PreInc) Walk(v node.Visitor) { func (n PreInc) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Print struct { type Print struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }
func NewPrint(Expression node.Node) node.Node { func NewPrint(Expression node.Node) node.Node {
return &Print{ return &Print{
nil,
nil, nil,
Expression, Expression,
} }
@ -29,6 +32,15 @@ func (n Print) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Print) Comments() *[]comment.Comment {
return n.comments
}
func (n Print) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Print) Walk(v node.Visitor) { func (n Print) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,17 +1,20 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type PropertyFetch struct { type PropertyFetch struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Variable node.Node Variable node.Node
Property node.Node Property node.Node
} }
func NewPropertyFetch(Variable node.Node, Property node.Node) node.Node { func NewPropertyFetch(Variable node.Node, Property node.Node) node.Node {
return &PropertyFetch{ return &PropertyFetch{
nil,
nil, nil,
Variable, Variable,
Property, Property,
@ -31,6 +34,15 @@ func (n PropertyFetch) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n PropertyFetch) Comments() *[]comment.Comment {
return n.comments
}
func (n PropertyFetch) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n PropertyFetch) Walk(v node.Visitor) { func (n PropertyFetch) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Require struct { type Require struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }
func NewRequire(Expression node.Node) node.Node { func NewRequire(Expression node.Node) node.Node {
return &Require{ return &Require{
nil,
nil, nil,
Expression, Expression,
} }
@ -29,6 +32,15 @@ func (n Require) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Require) Comments() *[]comment.Comment {
return n.comments
}
func (n Require) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Require) Walk(v node.Visitor) { func (n Require) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type RequireOnce struct { type RequireOnce struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }
func NewRequireOnce(Expression node.Node) node.Node { func NewRequireOnce(Expression node.Node) node.Node {
return &RequireOnce{ return &RequireOnce{
nil,
nil, nil,
Expression, Expression,
} }
@ -29,6 +32,15 @@ func (n RequireOnce) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n RequireOnce) Comments() *[]comment.Comment {
return n.comments
}
func (n RequireOnce) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n RequireOnce) Walk(v node.Visitor) { func (n RequireOnce) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type ShellExec struct { type ShellExec struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Parts []node.Node Parts []node.Node
} }
func NewShellExec(Parts []node.Node) node.Node { func NewShellExec(Parts []node.Node) node.Node {
return &ShellExec{ return &ShellExec{
nil,
nil, nil,
Parts, Parts,
} }
@ -29,6 +32,15 @@ func (n ShellExec) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n ShellExec) Comments() *[]comment.Comment {
return n.comments
}
func (n ShellExec) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n ShellExec) Walk(v node.Visitor) { func (n ShellExec) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type ShortArray struct { type ShortArray struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Items []node.Node Items []node.Node
} }
func NewShortArray(Items []node.Node) node.Node { func NewShortArray(Items []node.Node) node.Node {
return &ShortArray{ return &ShortArray{
nil,
nil, nil,
Items, Items,
} }
@ -29,6 +32,15 @@ func (n ShortArray) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n ShortArray) Comments() *[]comment.Comment {
return n.comments
}
func (n ShortArray) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n ShortArray) Walk(v node.Visitor) { func (n ShortArray) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type ShortList struct { type ShortList struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Items []node.Node Items []node.Node
} }
func NewShortList(Items []node.Node) node.Node { func NewShortList(Items []node.Node) node.Node {
return &ShortList{ return &ShortList{
nil,
nil, nil,
Items, Items,
} }
@ -29,6 +32,15 @@ func (n ShortList) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n ShortList) Comments() *[]comment.Comment {
return n.comments
}
func (n ShortList) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n ShortList) Walk(v node.Visitor) { func (n ShortList) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,11 +1,13 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type StaticCall struct { type StaticCall struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Class node.Node Class node.Node
Call node.Node Call node.Node
Arguments []node.Node Arguments []node.Node
@ -13,6 +15,7 @@ type StaticCall struct {
func NewStaticCall(Class node.Node, Call node.Node, Arguments []node.Node) node.Node { func NewStaticCall(Class node.Node, Call node.Node, Arguments []node.Node) node.Node {
return &StaticCall{ return &StaticCall{
nil,
nil, nil,
Class, Class,
Call, Call,
@ -33,6 +36,15 @@ func (n StaticCall) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n StaticCall) Comments() *[]comment.Comment {
return n.comments
}
func (n StaticCall) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n StaticCall) Walk(v node.Visitor) { func (n StaticCall) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,17 +1,20 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type StaticPropertyFetch struct { type StaticPropertyFetch struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Class node.Node Class node.Node
Property node.Node Property node.Node
} }
func NewStaticPropertyFetch(Class node.Node, Property node.Node) node.Node { func NewStaticPropertyFetch(Class node.Node, Property node.Node) node.Node {
return &StaticPropertyFetch{ return &StaticPropertyFetch{
nil,
nil, nil,
Class, Class,
Property, Property,
@ -31,6 +34,15 @@ func (n StaticPropertyFetch) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n StaticPropertyFetch) Comments() *[]comment.Comment {
return n.comments
}
func (n StaticPropertyFetch) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n StaticPropertyFetch) Walk(v node.Visitor) { func (n StaticPropertyFetch) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,11 +1,13 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Ternary struct { type Ternary struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Condition node.Node Condition node.Node
IfTrue node.Node IfTrue node.Node
IfFalse node.Node IfFalse node.Node
@ -13,6 +15,7 @@ type Ternary struct {
func NewTernary(Condition node.Node, IfTrue node.Node, IfFalse node.Node) node.Node { func NewTernary(Condition node.Node, IfTrue node.Node, IfFalse node.Node) node.Node {
return &Ternary{ return &Ternary{
nil,
nil, nil,
Condition, Condition,
IfTrue, IfTrue,
@ -33,6 +36,15 @@ func (n Ternary) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Ternary) Comments() *[]comment.Comment {
return n.comments
}
func (n Ternary) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Ternary) Walk(v node.Visitor) { func (n Ternary) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type UnaryMinus struct { type UnaryMinus struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }
func NewUnaryMinus(Expression node.Node) node.Node { func NewUnaryMinus(Expression node.Node) node.Node {
return &UnaryMinus{ return &UnaryMinus{
nil,
nil, nil,
Expression, Expression,
} }
@ -29,6 +32,15 @@ func (n UnaryMinus) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n UnaryMinus) Comments() *[]comment.Comment {
return n.comments
}
func (n UnaryMinus) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n UnaryMinus) Walk(v node.Visitor) { func (n UnaryMinus) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type UnaryPlus struct { type UnaryPlus struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }
func NewUnaryPlus(Expression node.Node) node.Node { func NewUnaryPlus(Expression node.Node) node.Node {
return &UnaryPlus{ return &UnaryPlus{
nil,
nil, nil,
Expression, Expression,
} }
@ -29,6 +32,15 @@ func (n UnaryPlus) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n UnaryPlus) Comments() *[]comment.Comment {
return n.comments
}
func (n UnaryPlus) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n UnaryPlus) Walk(v node.Visitor) { func (n UnaryPlus) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Variable struct { type Variable struct {
position *node.Position position *node.Position
comments *[]comment.Comment
VarName node.Node VarName node.Node
} }
func NewVariable(VarName node.Node) node.Node { func NewVariable(VarName node.Node) node.Node {
return &Variable{ return &Variable{
nil,
nil, nil,
VarName, VarName,
} }
@ -29,6 +32,15 @@ func (n Variable) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Variable) Comments() *[]comment.Comment {
return n.comments
}
func (n Variable) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Variable) Walk(v node.Visitor) { func (n Variable) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,17 +1,20 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Yield struct { type Yield struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Key node.Node Key node.Node
Value node.Node Value node.Node
} }
func NewYield(Key node.Node, Value node.Node) node.Node { func NewYield(Key node.Node, Value node.Node) node.Node {
return &Yield{ return &Yield{
nil,
nil, nil,
Key, Key,
Value, Value,
@ -31,6 +34,15 @@ func (n Yield) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Yield) Comments() *[]comment.Comment {
return n.comments
}
func (n Yield) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Yield) Walk(v node.Visitor) { func (n Yield) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package expr package expr
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type YieldFrom struct { type YieldFrom struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Expr node.Node Expr node.Node
} }
func NewYieldFrom(Expression node.Node) node.Node { func NewYieldFrom(Expression node.Node) node.Node {
return &YieldFrom{ return &YieldFrom{
nil,
nil, nil,
Expression, Expression,
} }
@ -29,6 +32,15 @@ func (n YieldFrom) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n YieldFrom) Comments() *[]comment.Comment {
return n.comments
}
func (n YieldFrom) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n YieldFrom) Walk(v node.Visitor) { func (n YieldFrom) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,12 +1,16 @@
package node package node
import "github.com/z7zmey/php-parser/comment"
type Identifier struct { type Identifier struct {
position *Position position *Position
comments *[]comment.Comment
Value string Value string
} }
func NewIdentifier(Value string) Node { func NewIdentifier(Value string) Node {
return &Identifier{ return &Identifier{
nil,
nil, nil,
Value, Value,
} }
@ -27,6 +31,15 @@ func (n Identifier) SetPosition(p *Position) Node {
return n return n
} }
func (n Identifier) Comments() *[]comment.Comment {
return n.comments
}
func (n Identifier) SetComments(c []comment.Comment) Node {
n.comments = &c
return n
}
func (n Identifier) Walk(v Visitor) { func (n Identifier) Walk(v Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -11,6 +11,7 @@ type FullyQualified struct {
func NewFullyQualified(Parts []node.Node) node.Node { func NewFullyQualified(Parts []node.Node) node.Node {
return &FullyQualified{ return &FullyQualified{
Name{ Name{
nil,
nil, nil,
Parts, Parts,
}, },

View File

@ -1,16 +1,19 @@
package name package name
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type Name struct { type Name struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Parts []node.Node Parts []node.Node
} }
func NewName(Parts []node.Node) node.Node { func NewName(Parts []node.Node) node.Node {
return &Name{ return &Name{
nil,
nil, nil,
Parts, Parts,
} }
@ -29,6 +32,15 @@ func (n Name) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n Name) Comments() *[]comment.Comment {
return n.comments
}
func (n Name) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n Name) Walk(v node.Visitor) { func (n Name) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -1,16 +1,19 @@
package name package name
import ( import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/node"
) )
type NamePart struct { type NamePart struct {
position *node.Position position *node.Position
comments *[]comment.Comment
Value string Value string
} }
func NewNamePart(Value string) node.Node { func NewNamePart(Value string) node.Node {
return &NamePart{ return &NamePart{
nil,
nil, nil,
Value, Value,
} }
@ -31,6 +34,15 @@ func (n NamePart) SetPosition(p *node.Position) node.Node {
return n return n
} }
func (n NamePart) Comments() *[]comment.Comment {
return n.comments
}
func (n NamePart) SetComments(c []comment.Comment) node.Node {
n.comments = &c
return n
}
func (n NamePart) Walk(v node.Visitor) { func (n NamePart) Walk(v node.Visitor) {
if v.EnterNode(n) == false { if v.EnterNode(n) == false {
return return

View File

@ -11,6 +11,7 @@ type Relative struct {
func NewRelative(Parts []node.Node) node.Node { func NewRelative(Parts []node.Node) node.Node {
return &Relative{ return &Relative{
Name{ Name{
nil,
nil, nil,
Parts, Parts,
}, },

Some files were not shown because too many files have changed in this diff Show More