handle comments
This commit is contained in:
parent
cd34d41218
commit
21c0c7c86e
@ -14,7 +14,7 @@ A Parser for PHP written in Go inspired by [Nikic PHP Parser](https://github.com
|
||||
- [x] AST visitor
|
||||
- [x] AST dumper
|
||||
- [x] node position
|
||||
- [ ] handling comments
|
||||
- [x] handling comments
|
||||
- [ ] Tests
|
||||
- [ ] Documentation
|
||||
- [ ] PHP 5 syntax analyzer
|
||||
|
@ -22,6 +22,13 @@ func (d dumper) EnterNode(n node.Node) bool {
|
||||
}
|
||||
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
|
||||
}
|
||||
|
||||
|
@ -1,13 +1,17 @@
|
||||
package node
|
||||
|
||||
import "github.com/z7zmey/php-parser/comment"
|
||||
|
||||
type Argument struct {
|
||||
position *Position
|
||||
comments *[]comment.Comment
|
||||
Variadic bool
|
||||
Expr Node
|
||||
}
|
||||
|
||||
func NewArgument(Expression Node, Variadic bool) Node {
|
||||
return &Argument{
|
||||
nil,
|
||||
nil,
|
||||
Variadic,
|
||||
Expression,
|
||||
@ -29,6 +33,15 @@ func (n Argument) SetPosition(p *Position) Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Array struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Items []node.Node
|
||||
}
|
||||
|
||||
func NewArray(Items []node.Node) node.Node {
|
||||
return &Array{
|
||||
nil,
|
||||
nil,
|
||||
Items,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n Array) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,17 +1,20 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type ArrayDimFetch struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Variable node.Node
|
||||
Dim node.Node
|
||||
}
|
||||
|
||||
func NewArrayDimFetch(Variable node.Node, Dim node.Node) node.Node {
|
||||
return &ArrayDimFetch{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Dim,
|
||||
@ -31,6 +34,15 @@ func (n ArrayDimFetch) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,11 +1,13 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type ArrayItem struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
ByRef bool
|
||||
Key node.Node
|
||||
Val node.Node
|
||||
@ -13,6 +15,7 @@ type ArrayItem struct {
|
||||
|
||||
func NewArrayItem(Key node.Node, Val node.Node, ByRef bool) node.Node {
|
||||
return &ArrayItem{
|
||||
nil,
|
||||
nil,
|
||||
ByRef,
|
||||
Key,
|
||||
@ -35,6 +38,15 @@ func (n ArrayItem) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Assign struct {
|
||||
func NewAssign(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Assign{
|
||||
AssignOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Assign) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,11 +1,13 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type AssignOp struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Variable node.Node
|
||||
Expression node.Node
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type AssignRef struct {
|
||||
func NewAssignRef(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &AssignRef{
|
||||
AssignOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n AssignRef) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type BitwiseAnd struct {
|
||||
func NewBitwiseAnd(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &BitwiseAnd{
|
||||
AssignOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n BitwiseAnd) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type BitwiseOr struct {
|
||||
func NewBitwiseOr(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &BitwiseOr{
|
||||
AssignOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n BitwiseOr) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type BitwiseXor struct {
|
||||
func NewBitwiseXor(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &BitwiseXor{
|
||||
AssignOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n BitwiseXor) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Concat struct {
|
||||
func NewConcat(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Concat{
|
||||
AssignOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Concat) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Div struct {
|
||||
func NewDiv(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Div{
|
||||
AssignOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Div) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Minus struct {
|
||||
func NewMinus(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Minus{
|
||||
AssignOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Minus) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Mod struct {
|
||||
func NewMod(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Mod{
|
||||
AssignOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Mod) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Mul struct {
|
||||
func NewMul(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Mul{
|
||||
AssignOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Mul) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Plus struct {
|
||||
func NewPlus(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Plus{
|
||||
AssignOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Plus) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Pow struct {
|
||||
func NewPow(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Pow{
|
||||
AssignOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Pow) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type ShiftLeft struct {
|
||||
func NewShiftLeft(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &ShiftLeft{
|
||||
AssignOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n ShiftLeft) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package assign_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type ShiftRight struct {
|
||||
func NewShiftRight(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &ShiftRight{
|
||||
AssignOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n ShiftRight) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,11 +1,13 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type BinaryOp struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Left node.Node
|
||||
Right node.Node
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type BitwiseAnd struct {
|
||||
func NewBitwiseAnd(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &BitwiseAnd{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n BitwiseAnd) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type BitwiseOr struct {
|
||||
func NewBitwiseOr(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &BitwiseOr{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n BitwiseOr) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type BitwiseXor struct {
|
||||
func NewBitwiseXor(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &BitwiseXor{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n BitwiseXor) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type BooleanAnd struct {
|
||||
func NewBooleanAnd(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &BooleanAnd{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n BooleanAnd) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type BooleanOr struct {
|
||||
func NewBooleanOr(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &BooleanOr{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n BooleanOr) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Coalesce struct {
|
||||
func NewCoalesce(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Coalesce{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Coalesce) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Concat struct {
|
||||
func NewConcat(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Concat{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Concat) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Div struct {
|
||||
func NewDiv(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Div{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Div) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Equal struct {
|
||||
func NewEqual(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Equal{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Equal) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Greater struct {
|
||||
func NewGreater(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Greater{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Greater) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type GreaterOrEqual struct {
|
||||
func NewGreaterOrEqual(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &GreaterOrEqual{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n GreaterOrEqual) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Identical struct {
|
||||
func NewIdentical(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Identical{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Identical) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type LogicalAnd struct {
|
||||
func NewLogicalAnd(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &LogicalAnd{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n LogicalAnd) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type LogicalOr struct {
|
||||
func NewLogicalOr(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &LogicalOr{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n LogicalOr) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type LogicalXor struct {
|
||||
func NewLogicalXor(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &LogicalXor{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n LogicalXor) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Minus struct {
|
||||
func NewMinus(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Minus{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Minus) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Mod struct {
|
||||
func NewMod(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Mod{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Mod) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Mul struct {
|
||||
func NewMul(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Mul{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Mul) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type NotEqual struct {
|
||||
func NewNotEqual(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &NotEqual{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n NotEqual) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type NotIdentical struct {
|
||||
func NewNotIdentical(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &NotIdentical{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n NotIdentical) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Plus struct {
|
||||
func NewPlus(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Plus{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Plus) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Pow struct {
|
||||
func NewPow(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Pow{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Pow) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type ShiftLeft struct {
|
||||
func NewShiftLeft(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &ShiftLeft{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n ShiftLeft) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type ShiftRight struct {
|
||||
func NewShiftRight(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &ShiftRight{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n ShiftRight) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Smaller struct {
|
||||
func NewSmaller(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Smaller{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Smaller) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type SmallerOrEqual struct {
|
||||
func NewSmallerOrEqual(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &SmallerOrEqual{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n SmallerOrEqual) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package binary_op
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type Spaceship struct {
|
||||
func NewSpaceship(Variable node.Node, Expression node.Node) node.Node {
|
||||
return &Spaceship{
|
||||
BinaryOp{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Expression,
|
||||
@ -31,6 +33,15 @@ func (n Spaceship) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type BitwiseNot struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
||||
func NewBitwiseNot(Expression node.Node) node.Node {
|
||||
return &BitwiseNot{
|
||||
nil,
|
||||
nil,
|
||||
Expression,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n BitwiseNot) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type BooleanNot struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
||||
func NewBooleanNot(Expression node.Node) node.Node {
|
||||
return &BooleanNot{
|
||||
nil,
|
||||
nil,
|
||||
Expression,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n BooleanNot) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,10 +1,12 @@
|
||||
package cast
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Cast struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
package cast
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type CastArray struct {
|
||||
func NewCastArray(Expr node.Node) node.Node {
|
||||
return &CastArray{
|
||||
Cast{
|
||||
nil,
|
||||
nil,
|
||||
Expr,
|
||||
},
|
||||
@ -30,6 +32,15 @@ func (n CastArray) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package cast
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type CastBool struct {
|
||||
func NewCastBool(Expr node.Node) node.Node {
|
||||
return &CastBool{
|
||||
Cast{
|
||||
nil,
|
||||
nil,
|
||||
Expr,
|
||||
},
|
||||
@ -30,6 +32,15 @@ func (n CastBool) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package cast
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type CastDouble struct {
|
||||
func NewCastDouble(Expr node.Node) node.Node {
|
||||
return &CastDouble{
|
||||
Cast{
|
||||
nil,
|
||||
nil,
|
||||
Expr,
|
||||
},
|
||||
@ -30,6 +32,15 @@ func (n CastDouble) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package cast
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type CastInt struct {
|
||||
func NewCastInt(Expr node.Node) node.Node {
|
||||
return &CastInt{
|
||||
Cast{
|
||||
nil,
|
||||
nil,
|
||||
Expr,
|
||||
},
|
||||
@ -30,6 +32,15 @@ func (n CastInt) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package cast
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type CastObject struct {
|
||||
func NewCastObject(Expr node.Node) node.Node {
|
||||
return &CastObject{
|
||||
Cast{
|
||||
nil,
|
||||
nil,
|
||||
Expr,
|
||||
},
|
||||
@ -30,6 +32,15 @@ func (n CastObject) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package cast
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type CastString struct {
|
||||
func NewCastString(Expr node.Node) node.Node {
|
||||
return &CastString{
|
||||
Cast{
|
||||
nil,
|
||||
nil,
|
||||
Expr,
|
||||
},
|
||||
@ -30,6 +32,15 @@ func (n CastString) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,6 +1,7 @@
|
||||
package cast
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
@ -11,6 +12,7 @@ type CastUnset struct {
|
||||
func NewCastUnset(Expr node.Node) node.Node {
|
||||
return &CastUnset{
|
||||
Cast{
|
||||
nil,
|
||||
nil,
|
||||
Expr,
|
||||
},
|
||||
@ -30,6 +32,15 @@ func (n CastUnset) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,17 +1,20 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type ClassConstFetch struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Class node.Node
|
||||
ConstantName node.Node
|
||||
}
|
||||
|
||||
func NewClassConstFetch(Class node.Node, ConstantName node.Node) node.Node {
|
||||
return &ClassConstFetch{
|
||||
nil,
|
||||
nil,
|
||||
Class,
|
||||
ConstantName,
|
||||
@ -31,6 +34,15 @@ func (n ClassConstFetch) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Clone struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
||||
func NewClone(Expression node.Node) node.Node {
|
||||
return &Clone{
|
||||
nil,
|
||||
nil,
|
||||
Expression,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n Clone) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,11 +1,13 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Closure struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
ReturnsRef bool
|
||||
Static bool
|
||||
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 {
|
||||
return &Closure{
|
||||
nil,
|
||||
nil,
|
||||
ReturnsRef,
|
||||
Static,
|
||||
@ -45,6 +48,15 @@ func (n Closure) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,17 +1,20 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type ClusureUse struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
ByRef bool
|
||||
Variable node.Node
|
||||
}
|
||||
|
||||
func NewClusureUse(Variable node.Node, ByRef bool) node.Node {
|
||||
return &ClusureUse{
|
||||
nil,
|
||||
nil,
|
||||
ByRef,
|
||||
Variable,
|
||||
@ -33,6 +36,15 @@ func (n ClusureUse) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type ConstFetch struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Constant node.Node
|
||||
}
|
||||
|
||||
func NewConstFetch(Constant node.Node) node.Node {
|
||||
return &ConstFetch{
|
||||
nil,
|
||||
nil,
|
||||
Constant,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n ConstFetch) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Empty struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
||||
func NewEmpty(Expression node.Node) node.Node {
|
||||
return &Empty{
|
||||
nil,
|
||||
nil,
|
||||
Expression,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n Empty) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type ErrorSuppress struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
||||
func NewErrorSuppress(Expression node.Node) node.Node {
|
||||
return &ErrorSuppress{
|
||||
nil,
|
||||
nil,
|
||||
Expression,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n ErrorSuppress) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Eval struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
||||
func NewEval(Expression node.Node) node.Node {
|
||||
return &Eval{
|
||||
nil,
|
||||
nil,
|
||||
Expression,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n Eval) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,17 +1,20 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Exit struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
IsDie bool
|
||||
}
|
||||
|
||||
func NewExit(Expr node.Node, IsDie bool) node.Node {
|
||||
return &Exit{
|
||||
nil,
|
||||
nil,
|
||||
Expr,
|
||||
IsDie,
|
||||
@ -33,6 +36,15 @@ func (n Exit) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,17 +1,20 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type FunctionCall struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Function node.Node
|
||||
Arguments []node.Node
|
||||
}
|
||||
|
||||
func NewFunctionCall(Function node.Node, Arguments []node.Node) node.Node {
|
||||
return &FunctionCall{
|
||||
nil,
|
||||
nil,
|
||||
Function,
|
||||
Arguments,
|
||||
@ -31,6 +34,15 @@ func (n FunctionCall) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Include struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
||||
func NewInclude(Expression node.Node) node.Node {
|
||||
return &Include{
|
||||
nil,
|
||||
nil,
|
||||
Expression,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n Include) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type IncludeOnce struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
||||
func NewIncludeOnce(Expression node.Node) node.Node {
|
||||
return &IncludeOnce{
|
||||
nil,
|
||||
nil,
|
||||
Expression,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n IncludeOnce) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,17 +1,20 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type InstanceOf struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
Class node.Node
|
||||
}
|
||||
|
||||
func NewInstanceOf(Expr node.Node, Class node.Node) node.Node {
|
||||
return &InstanceOf{
|
||||
nil,
|
||||
nil,
|
||||
Expr,
|
||||
Class,
|
||||
@ -31,6 +34,15 @@ func (n InstanceOf) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Isset struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Variables []node.Node
|
||||
}
|
||||
|
||||
func NewIsset(Variables []node.Node) node.Node {
|
||||
return &Isset{
|
||||
nil,
|
||||
nil,
|
||||
Variables,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n Isset) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type List struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Items []node.Node
|
||||
}
|
||||
|
||||
func NewList(Items []node.Node) node.Node {
|
||||
return &List{
|
||||
nil,
|
||||
nil,
|
||||
Items,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n List) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,11 +1,13 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type MethodCall struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Variable node.Node
|
||||
Method 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 {
|
||||
return &MethodCall{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Method,
|
||||
@ -33,6 +36,15 @@ func (n MethodCall) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,17 +1,20 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type New struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Class node.Node
|
||||
Arguments []node.Node
|
||||
}
|
||||
|
||||
func NewNew(Class node.Node, Arguments []node.Node) node.Node {
|
||||
return &New{
|
||||
nil,
|
||||
nil,
|
||||
Class,
|
||||
Arguments,
|
||||
@ -31,6 +34,15 @@ func (n New) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type PostDec struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Variable node.Node
|
||||
}
|
||||
|
||||
func NewPostDec(Variable node.Node) node.Node {
|
||||
return &PostDec{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n PostDec) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type PostInc struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Variable node.Node
|
||||
}
|
||||
|
||||
func NewPostInc(Variable node.Node) node.Node {
|
||||
return &PostInc{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n PostInc) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type PreDec struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Variable node.Node
|
||||
}
|
||||
|
||||
func NewPreDec(Variable node.Node) node.Node {
|
||||
return &PreDec{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n PreDec) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type PreInc struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Variable node.Node
|
||||
}
|
||||
|
||||
func NewPreInc(Variable node.Node) node.Node {
|
||||
return &PreInc{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n PreInc) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Print struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
||||
func NewPrint(Expression node.Node) node.Node {
|
||||
return &Print{
|
||||
nil,
|
||||
nil,
|
||||
Expression,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n Print) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,17 +1,20 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type PropertyFetch struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Variable node.Node
|
||||
Property node.Node
|
||||
}
|
||||
|
||||
func NewPropertyFetch(Variable node.Node, Property node.Node) node.Node {
|
||||
return &PropertyFetch{
|
||||
nil,
|
||||
nil,
|
||||
Variable,
|
||||
Property,
|
||||
@ -31,6 +34,15 @@ func (n PropertyFetch) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Require struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
||||
func NewRequire(Expression node.Node) node.Node {
|
||||
return &Require{
|
||||
nil,
|
||||
nil,
|
||||
Expression,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n Require) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type RequireOnce struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
||||
func NewRequireOnce(Expression node.Node) node.Node {
|
||||
return &RequireOnce{
|
||||
nil,
|
||||
nil,
|
||||
Expression,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n RequireOnce) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type ShellExec struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Parts []node.Node
|
||||
}
|
||||
|
||||
func NewShellExec(Parts []node.Node) node.Node {
|
||||
return &ShellExec{
|
||||
nil,
|
||||
nil,
|
||||
Parts,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n ShellExec) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type ShortArray struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Items []node.Node
|
||||
}
|
||||
|
||||
func NewShortArray(Items []node.Node) node.Node {
|
||||
return &ShortArray{
|
||||
nil,
|
||||
nil,
|
||||
Items,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n ShortArray) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type ShortList struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Items []node.Node
|
||||
}
|
||||
|
||||
func NewShortList(Items []node.Node) node.Node {
|
||||
return &ShortList{
|
||||
nil,
|
||||
nil,
|
||||
Items,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n ShortList) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,11 +1,13 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type StaticCall struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Class node.Node
|
||||
Call 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 {
|
||||
return &StaticCall{
|
||||
nil,
|
||||
nil,
|
||||
Class,
|
||||
Call,
|
||||
@ -33,6 +36,15 @@ func (n StaticCall) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,17 +1,20 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type StaticPropertyFetch struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Class node.Node
|
||||
Property node.Node
|
||||
}
|
||||
|
||||
func NewStaticPropertyFetch(Class node.Node, Property node.Node) node.Node {
|
||||
return &StaticPropertyFetch{
|
||||
nil,
|
||||
nil,
|
||||
Class,
|
||||
Property,
|
||||
@ -31,6 +34,15 @@ func (n StaticPropertyFetch) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,11 +1,13 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Ternary struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Condition node.Node
|
||||
IfTrue 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 {
|
||||
return &Ternary{
|
||||
nil,
|
||||
nil,
|
||||
Condition,
|
||||
IfTrue,
|
||||
@ -33,6 +36,15 @@ func (n Ternary) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type UnaryMinus struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
||||
func NewUnaryMinus(Expression node.Node) node.Node {
|
||||
return &UnaryMinus{
|
||||
nil,
|
||||
nil,
|
||||
Expression,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n UnaryMinus) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type UnaryPlus struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
||||
func NewUnaryPlus(Expression node.Node) node.Node {
|
||||
return &UnaryPlus{
|
||||
nil,
|
||||
nil,
|
||||
Expression,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n UnaryPlus) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Variable struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
VarName node.Node
|
||||
}
|
||||
|
||||
func NewVariable(VarName node.Node) node.Node {
|
||||
return &Variable{
|
||||
nil,
|
||||
nil,
|
||||
VarName,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n Variable) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,17 +1,20 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Yield struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Key node.Node
|
||||
Value node.Node
|
||||
}
|
||||
|
||||
func NewYield(Key node.Node, Value node.Node) node.Node {
|
||||
return &Yield{
|
||||
nil,
|
||||
nil,
|
||||
Key,
|
||||
Value,
|
||||
@ -31,6 +34,15 @@ func (n Yield) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package expr
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type YieldFrom struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Expr node.Node
|
||||
}
|
||||
|
||||
func NewYieldFrom(Expression node.Node) node.Node {
|
||||
return &YieldFrom{
|
||||
nil,
|
||||
nil,
|
||||
Expression,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n YieldFrom) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,12 +1,16 @@
|
||||
package node
|
||||
|
||||
import "github.com/z7zmey/php-parser/comment"
|
||||
|
||||
type Identifier struct {
|
||||
position *Position
|
||||
comments *[]comment.Comment
|
||||
Value string
|
||||
}
|
||||
|
||||
func NewIdentifier(Value string) Node {
|
||||
return &Identifier{
|
||||
nil,
|
||||
nil,
|
||||
Value,
|
||||
}
|
||||
@ -27,6 +31,15 @@ func (n Identifier) SetPosition(p *Position) Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -11,6 +11,7 @@ type FullyQualified struct {
|
||||
func NewFullyQualified(Parts []node.Node) node.Node {
|
||||
return &FullyQualified{
|
||||
Name{
|
||||
nil,
|
||||
nil,
|
||||
Parts,
|
||||
},
|
||||
|
@ -1,16 +1,19 @@
|
||||
package name
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type Name struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Parts []node.Node
|
||||
}
|
||||
|
||||
func NewName(Parts []node.Node) node.Node {
|
||||
return &Name{
|
||||
nil,
|
||||
nil,
|
||||
Parts,
|
||||
}
|
||||
@ -29,6 +32,15 @@ func (n Name) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -1,16 +1,19 @@
|
||||
package name
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/comment"
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
type NamePart struct {
|
||||
position *node.Position
|
||||
comments *[]comment.Comment
|
||||
Value string
|
||||
}
|
||||
|
||||
func NewNamePart(Value string) node.Node {
|
||||
return &NamePart{
|
||||
nil,
|
||||
nil,
|
||||
Value,
|
||||
}
|
||||
@ -31,6 +34,15 @@ func (n NamePart) SetPosition(p *node.Position) node.Node {
|
||||
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) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
|
@ -11,6 +11,7 @@ type Relative struct {
|
||||
func NewRelative(Parts []node.Node) node.Node {
|
||||
return &Relative{
|
||||
Name{
|
||||
nil,
|
||||
nil,
|
||||
Parts,
|
||||
},
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user