extract comments package
This commit is contained in:
parent
b7b859edaa
commit
99856ae32f
@ -1,5 +1,13 @@
|
|||||||
package comment
|
package comment
|
||||||
|
|
||||||
|
import "github.com/z7zmey/php-parser/node"
|
||||||
|
|
||||||
type Comment interface {
|
type Comment interface {
|
||||||
String() string
|
String() string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type Comments map[node.Node][]Comment
|
||||||
|
|
||||||
|
func (c Comments) AddComments(node node.Node, comments []Comment) {
|
||||||
|
c[node] = append(c[node], comments...)
|
||||||
|
}
|
||||||
|
@ -4,11 +4,13 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
|
||||||
|
"github.com/z7zmey/php-parser/comment"
|
||||||
"github.com/z7zmey/php-parser/node"
|
"github.com/z7zmey/php-parser/node"
|
||||||
)
|
)
|
||||||
|
|
||||||
type dumper struct {
|
type dumper struct {
|
||||||
indent string
|
indent string
|
||||||
|
comments comment.Comments
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d dumper) EnterNode(n node.Node) bool {
|
func (d dumper) EnterNode(n node.Node) bool {
|
||||||
@ -22,7 +24,7 @@ func (d dumper) EnterNode(n node.Node) bool {
|
|||||||
}
|
}
|
||||||
fmt.Println()
|
fmt.Println()
|
||||||
|
|
||||||
if c := n.Comments(); c != nil && len(c) > 0 {
|
if c := d.comments[n]; len(c) > 0 {
|
||||||
fmt.Printf("%vcomments:\n", d.indent+" ")
|
fmt.Printf("%vcomments:\n", d.indent+" ")
|
||||||
for _, cc := range c {
|
for _, cc := range c {
|
||||||
fmt.Printf("%v%q\n", d.indent+" ", cc)
|
fmt.Printf("%v%q\n", d.indent+" ", cc)
|
||||||
@ -34,7 +36,7 @@ func (d dumper) EnterNode(n node.Node) bool {
|
|||||||
|
|
||||||
func (d dumper) GetChildrenVisitor(key string) node.Visitor {
|
func (d dumper) GetChildrenVisitor(key string) node.Visitor {
|
||||||
fmt.Printf("%v%q:\n", d.indent+" ", key)
|
fmt.Printf("%v%q:\n", d.indent+" ", key)
|
||||||
return dumper{d.indent + " "}
|
return dumper{d.indent + " ", d.comments}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d dumper) LeaveNode(n node.Node) {
|
func (d dumper) LeaveNode(n node.Node) {
|
||||||
|
4
main.go
4
main.go
@ -19,9 +19,9 @@ func main() {
|
|||||||
fmt.Printf("==> %s\n", real)
|
fmt.Printf("==> %s\n", real)
|
||||||
|
|
||||||
src, _ := os.Open(string(real))
|
src, _ := os.Open(string(real))
|
||||||
rootnode := parser.Parse(src, real)
|
rootnode, comments := parser.Parse(src, real)
|
||||||
|
|
||||||
rootnode.Walk(dumper{" | "})
|
rootnode.Walk(dumper{" | ", comments})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,17 +1,13 @@
|
|||||||
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) *Argument {
|
func NewArgument(Expression Node, Variadic bool) *Argument {
|
||||||
return &Argument{
|
return &Argument{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variadic,
|
Variadic,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *Array {
|
func NewArray(Items []node.Node) *Array {
|
||||||
return &Array{
|
return &Array{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Items,
|
Items,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,20 +1,17 @@
|
|||||||
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) *ArrayDimFetch {
|
func NewArrayDimFetch(Variable node.Node, Dim node.Node) *ArrayDimFetch {
|
||||||
return &ArrayDimFetch{
|
return &ArrayDimFetch{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Dim,
|
Dim,
|
||||||
@ -34,15 +31,6 @@ 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
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
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
|
||||||
@ -15,7 +13,6 @@ type ArrayItem struct {
|
|||||||
|
|
||||||
func NewArrayItem(Key node.Node, Val node.Node, ByRef bool) *ArrayItem {
|
func NewArrayItem(Key node.Node, Val node.Node, ByRef bool) *ArrayItem {
|
||||||
return &ArrayItem{
|
return &ArrayItem{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
ByRef,
|
ByRef,
|
||||||
Key,
|
Key,
|
||||||
@ -38,15 +35,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Assign struct {
|
|||||||
func NewAssign(Variable node.Node, Expression node.Node) *Assign {
|
func NewAssign(Variable node.Node, Expression node.Node) *Assign {
|
||||||
return &Assign{
|
return &Assign{
|
||||||
AssignOp{
|
AssignOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
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
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type AssignRef struct {
|
|||||||
func NewAssignRef(Variable node.Node, Expression node.Node) *AssignRef {
|
func NewAssignRef(Variable node.Node, Expression node.Node) *AssignRef {
|
||||||
return &AssignRef{
|
return &AssignRef{
|
||||||
AssignOp{
|
AssignOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type BitwiseAnd struct {
|
|||||||
func NewBitwiseAnd(Variable node.Node, Expression node.Node) *BitwiseAnd {
|
func NewBitwiseAnd(Variable node.Node, Expression node.Node) *BitwiseAnd {
|
||||||
return &BitwiseAnd{
|
return &BitwiseAnd{
|
||||||
AssignOp{
|
AssignOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type BitwiseOr struct {
|
|||||||
func NewBitwiseOr(Variable node.Node, Expression node.Node) *BitwiseOr {
|
func NewBitwiseOr(Variable node.Node, Expression node.Node) *BitwiseOr {
|
||||||
return &BitwiseOr{
|
return &BitwiseOr{
|
||||||
AssignOp{
|
AssignOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type BitwiseXor struct {
|
|||||||
func NewBitwiseXor(Variable node.Node, Expression node.Node) *BitwiseXor {
|
func NewBitwiseXor(Variable node.Node, Expression node.Node) *BitwiseXor {
|
||||||
return &BitwiseXor{
|
return &BitwiseXor{
|
||||||
AssignOp{
|
AssignOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Concat struct {
|
|||||||
func NewConcat(Variable node.Node, Expression node.Node) *Concat {
|
func NewConcat(Variable node.Node, Expression node.Node) *Concat {
|
||||||
return &Concat{
|
return &Concat{
|
||||||
AssignOp{
|
AssignOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Div struct {
|
|||||||
func NewDiv(Variable node.Node, Expression node.Node) *Div {
|
func NewDiv(Variable node.Node, Expression node.Node) *Div {
|
||||||
return &Div{
|
return &Div{
|
||||||
AssignOp{
|
AssignOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Minus struct {
|
|||||||
func NewMinus(Variable node.Node, Expression node.Node) *Minus {
|
func NewMinus(Variable node.Node, Expression node.Node) *Minus {
|
||||||
return &Minus{
|
return &Minus{
|
||||||
AssignOp{
|
AssignOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Mod struct {
|
|||||||
func NewMod(Variable node.Node, Expression node.Node) *Mod {
|
func NewMod(Variable node.Node, Expression node.Node) *Mod {
|
||||||
return &Mod{
|
return &Mod{
|
||||||
AssignOp{
|
AssignOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Mul struct {
|
|||||||
func NewMul(Variable node.Node, Expression node.Node) *Mul {
|
func NewMul(Variable node.Node, Expression node.Node) *Mul {
|
||||||
return &Mul{
|
return &Mul{
|
||||||
AssignOp{
|
AssignOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Plus struct {
|
|||||||
func NewPlus(Variable node.Node, Expression node.Node) *Plus {
|
func NewPlus(Variable node.Node, Expression node.Node) *Plus {
|
||||||
return &Plus{
|
return &Plus{
|
||||||
AssignOp{
|
AssignOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Pow struct {
|
|||||||
func NewPow(Variable node.Node, Expression node.Node) *Pow {
|
func NewPow(Variable node.Node, Expression node.Node) *Pow {
|
||||||
return &Pow{
|
return &Pow{
|
||||||
AssignOp{
|
AssignOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type ShiftLeft struct {
|
|||||||
func NewShiftLeft(Variable node.Node, Expression node.Node) *ShiftLeft {
|
func NewShiftLeft(Variable node.Node, Expression node.Node) *ShiftLeft {
|
||||||
return &ShiftLeft{
|
return &ShiftLeft{
|
||||||
AssignOp{
|
AssignOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type ShiftRight struct {
|
|||||||
func NewShiftRight(Variable node.Node, Expression node.Node) *ShiftRight {
|
func NewShiftRight(Variable node.Node, Expression node.Node) *ShiftRight {
|
||||||
return &ShiftRight{
|
return &ShiftRight{
|
||||||
AssignOp{
|
AssignOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
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
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type BitwiseAnd struct {
|
|||||||
func NewBitwiseAnd(Variable node.Node, Expression node.Node) *BitwiseAnd {
|
func NewBitwiseAnd(Variable node.Node, Expression node.Node) *BitwiseAnd {
|
||||||
return &BitwiseAnd{
|
return &BitwiseAnd{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type BitwiseOr struct {
|
|||||||
func NewBitwiseOr(Variable node.Node, Expression node.Node) *BitwiseOr {
|
func NewBitwiseOr(Variable node.Node, Expression node.Node) *BitwiseOr {
|
||||||
return &BitwiseOr{
|
return &BitwiseOr{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type BitwiseXor struct {
|
|||||||
func NewBitwiseXor(Variable node.Node, Expression node.Node) *BitwiseXor {
|
func NewBitwiseXor(Variable node.Node, Expression node.Node) *BitwiseXor {
|
||||||
return &BitwiseXor{
|
return &BitwiseXor{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type BooleanAnd struct {
|
|||||||
func NewBooleanAnd(Variable node.Node, Expression node.Node) *BooleanAnd {
|
func NewBooleanAnd(Variable node.Node, Expression node.Node) *BooleanAnd {
|
||||||
return &BooleanAnd{
|
return &BooleanAnd{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type BooleanOr struct {
|
|||||||
func NewBooleanOr(Variable node.Node, Expression node.Node) *BooleanOr {
|
func NewBooleanOr(Variable node.Node, Expression node.Node) *BooleanOr {
|
||||||
return &BooleanOr{
|
return &BooleanOr{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Coalesce struct {
|
|||||||
func NewCoalesce(Variable node.Node, Expression node.Node) *Coalesce {
|
func NewCoalesce(Variable node.Node, Expression node.Node) *Coalesce {
|
||||||
return &Coalesce{
|
return &Coalesce{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Concat struct {
|
|||||||
func NewConcat(Variable node.Node, Expression node.Node) *Concat {
|
func NewConcat(Variable node.Node, Expression node.Node) *Concat {
|
||||||
return &Concat{
|
return &Concat{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Div struct {
|
|||||||
func NewDiv(Variable node.Node, Expression node.Node) *Div {
|
func NewDiv(Variable node.Node, Expression node.Node) *Div {
|
||||||
return &Div{
|
return &Div{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Equal struct {
|
|||||||
func NewEqual(Variable node.Node, Expression node.Node) *Equal {
|
func NewEqual(Variable node.Node, Expression node.Node) *Equal {
|
||||||
return &Equal{
|
return &Equal{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Greater struct {
|
|||||||
func NewGreater(Variable node.Node, Expression node.Node) *Greater {
|
func NewGreater(Variable node.Node, Expression node.Node) *Greater {
|
||||||
return &Greater{
|
return &Greater{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type GreaterOrEqual struct {
|
|||||||
func NewGreaterOrEqual(Variable node.Node, Expression node.Node) *GreaterOrEqual {
|
func NewGreaterOrEqual(Variable node.Node, Expression node.Node) *GreaterOrEqual {
|
||||||
return &GreaterOrEqual{
|
return &GreaterOrEqual{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Identical struct {
|
|||||||
func NewIdentical(Variable node.Node, Expression node.Node) *Identical {
|
func NewIdentical(Variable node.Node, Expression node.Node) *Identical {
|
||||||
return &Identical{
|
return &Identical{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type LogicalAnd struct {
|
|||||||
func NewLogicalAnd(Variable node.Node, Expression node.Node) *LogicalAnd {
|
func NewLogicalAnd(Variable node.Node, Expression node.Node) *LogicalAnd {
|
||||||
return &LogicalAnd{
|
return &LogicalAnd{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type LogicalOr struct {
|
|||||||
func NewLogicalOr(Variable node.Node, Expression node.Node) *LogicalOr {
|
func NewLogicalOr(Variable node.Node, Expression node.Node) *LogicalOr {
|
||||||
return &LogicalOr{
|
return &LogicalOr{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type LogicalXor struct {
|
|||||||
func NewLogicalXor(Variable node.Node, Expression node.Node) *LogicalXor {
|
func NewLogicalXor(Variable node.Node, Expression node.Node) *LogicalXor {
|
||||||
return &LogicalXor{
|
return &LogicalXor{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Minus struct {
|
|||||||
func NewMinus(Variable node.Node, Expression node.Node) *Minus {
|
func NewMinus(Variable node.Node, Expression node.Node) *Minus {
|
||||||
return &Minus{
|
return &Minus{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Mod struct {
|
|||||||
func NewMod(Variable node.Node, Expression node.Node) *Mod {
|
func NewMod(Variable node.Node, Expression node.Node) *Mod {
|
||||||
return &Mod{
|
return &Mod{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Mul struct {
|
|||||||
func NewMul(Variable node.Node, Expression node.Node) *Mul {
|
func NewMul(Variable node.Node, Expression node.Node) *Mul {
|
||||||
return &Mul{
|
return &Mul{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type NotEqual struct {
|
|||||||
func NewNotEqual(Variable node.Node, Expression node.Node) *NotEqual {
|
func NewNotEqual(Variable node.Node, Expression node.Node) *NotEqual {
|
||||||
return &NotEqual{
|
return &NotEqual{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type NotIdentical struct {
|
|||||||
func NewNotIdentical(Variable node.Node, Expression node.Node) *NotIdentical {
|
func NewNotIdentical(Variable node.Node, Expression node.Node) *NotIdentical {
|
||||||
return &NotIdentical{
|
return &NotIdentical{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Plus struct {
|
|||||||
func NewPlus(Variable node.Node, Expression node.Node) *Plus {
|
func NewPlus(Variable node.Node, Expression node.Node) *Plus {
|
||||||
return &Plus{
|
return &Plus{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Pow struct {
|
|||||||
func NewPow(Variable node.Node, Expression node.Node) *Pow {
|
func NewPow(Variable node.Node, Expression node.Node) *Pow {
|
||||||
return &Pow{
|
return &Pow{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type ShiftLeft struct {
|
|||||||
func NewShiftLeft(Variable node.Node, Expression node.Node) *ShiftLeft {
|
func NewShiftLeft(Variable node.Node, Expression node.Node) *ShiftLeft {
|
||||||
return &ShiftLeft{
|
return &ShiftLeft{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type ShiftRight struct {
|
|||||||
func NewShiftRight(Variable node.Node, Expression node.Node) *ShiftRight {
|
func NewShiftRight(Variable node.Node, Expression node.Node) *ShiftRight {
|
||||||
return &ShiftRight{
|
return &ShiftRight{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Smaller struct {
|
|||||||
func NewSmaller(Variable node.Node, Expression node.Node) *Smaller {
|
func NewSmaller(Variable node.Node, Expression node.Node) *Smaller {
|
||||||
return &Smaller{
|
return &Smaller{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type SmallerOrEqual struct {
|
|||||||
func NewSmallerOrEqual(Variable node.Node, Expression node.Node) *SmallerOrEqual {
|
func NewSmallerOrEqual(Variable node.Node, Expression node.Node) *SmallerOrEqual {
|
||||||
return &SmallerOrEqual{
|
return &SmallerOrEqual{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type Spaceship struct {
|
|||||||
func NewSpaceship(Variable node.Node, Expression node.Node) *Spaceship {
|
func NewSpaceship(Variable node.Node, Expression node.Node) *Spaceship {
|
||||||
return &Spaceship{
|
return &Spaceship{
|
||||||
BinaryOp{
|
BinaryOp{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Expression,
|
Expression,
|
||||||
@ -33,15 +31,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *BitwiseNot {
|
func NewBitwiseNot(Expression node.Node) *BitwiseNot {
|
||||||
return &BitwiseNot{
|
return &BitwiseNot{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expression,
|
Expression,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *BooleanNot {
|
func NewBooleanNot(Expression node.Node) *BooleanNot {
|
||||||
return &BooleanNot{
|
return &BooleanNot{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expression,
|
Expression,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,12 +1,10 @@
|
|||||||
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
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package cast
|
package cast
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/z7zmey/php-parser/comment"
|
|
||||||
"github.com/z7zmey/php-parser/node"
|
"github.com/z7zmey/php-parser/node"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type CastArray struct {
|
|||||||
func NewCastArray(Expr node.Node) *CastArray {
|
func NewCastArray(Expr node.Node) *CastArray {
|
||||||
return &CastArray{
|
return &CastArray{
|
||||||
Cast{
|
Cast{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expr,
|
Expr,
|
||||||
},
|
},
|
||||||
@ -32,15 +30,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package cast
|
package cast
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/z7zmey/php-parser/comment"
|
|
||||||
"github.com/z7zmey/php-parser/node"
|
"github.com/z7zmey/php-parser/node"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type CastBool struct {
|
|||||||
func NewCastBool(Expr node.Node) *CastBool {
|
func NewCastBool(Expr node.Node) *CastBool {
|
||||||
return &CastBool{
|
return &CastBool{
|
||||||
Cast{
|
Cast{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expr,
|
Expr,
|
||||||
},
|
},
|
||||||
@ -32,15 +30,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package cast
|
package cast
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/z7zmey/php-parser/comment"
|
|
||||||
"github.com/z7zmey/php-parser/node"
|
"github.com/z7zmey/php-parser/node"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type CastDouble struct {
|
|||||||
func NewCastDouble(Expr node.Node) *CastDouble {
|
func NewCastDouble(Expr node.Node) *CastDouble {
|
||||||
return &CastDouble{
|
return &CastDouble{
|
||||||
Cast{
|
Cast{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expr,
|
Expr,
|
||||||
},
|
},
|
||||||
@ -32,15 +30,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package cast
|
package cast
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/z7zmey/php-parser/comment"
|
|
||||||
"github.com/z7zmey/php-parser/node"
|
"github.com/z7zmey/php-parser/node"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type CastInt struct {
|
|||||||
func NewCastInt(Expr node.Node) *CastInt {
|
func NewCastInt(Expr node.Node) *CastInt {
|
||||||
return &CastInt{
|
return &CastInt{
|
||||||
Cast{
|
Cast{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expr,
|
Expr,
|
||||||
},
|
},
|
||||||
@ -32,15 +30,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package cast
|
package cast
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/z7zmey/php-parser/comment"
|
|
||||||
"github.com/z7zmey/php-parser/node"
|
"github.com/z7zmey/php-parser/node"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type CastObject struct {
|
|||||||
func NewCastObject(Expr node.Node) *CastObject {
|
func NewCastObject(Expr node.Node) *CastObject {
|
||||||
return &CastObject{
|
return &CastObject{
|
||||||
Cast{
|
Cast{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expr,
|
Expr,
|
||||||
},
|
},
|
||||||
@ -32,15 +30,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package cast
|
package cast
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/z7zmey/php-parser/comment"
|
|
||||||
"github.com/z7zmey/php-parser/node"
|
"github.com/z7zmey/php-parser/node"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type CastString struct {
|
|||||||
func NewCastString(Expr node.Node) *CastString {
|
func NewCastString(Expr node.Node) *CastString {
|
||||||
return &CastString{
|
return &CastString{
|
||||||
Cast{
|
Cast{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expr,
|
Expr,
|
||||||
},
|
},
|
||||||
@ -32,15 +30,6 @@ 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
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package cast
|
package cast
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/z7zmey/php-parser/comment"
|
|
||||||
"github.com/z7zmey/php-parser/node"
|
"github.com/z7zmey/php-parser/node"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -12,7 +11,6 @@ type CastUnset struct {
|
|||||||
func NewCastUnset(Expr node.Node) *CastUnset {
|
func NewCastUnset(Expr node.Node) *CastUnset {
|
||||||
return &CastUnset{
|
return &CastUnset{
|
||||||
Cast{
|
Cast{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expr,
|
Expr,
|
||||||
},
|
},
|
||||||
@ -32,15 +30,6 @@ 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
|
||||||
|
@ -1,20 +1,17 @@
|
|||||||
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) *ClassConstFetch {
|
func NewClassConstFetch(Class node.Node, ConstantName node.Node) *ClassConstFetch {
|
||||||
return &ClassConstFetch{
|
return &ClassConstFetch{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Class,
|
Class,
|
||||||
ConstantName,
|
ConstantName,
|
||||||
@ -34,15 +31,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *Clone {
|
func NewClone(Expression node.Node) *Clone {
|
||||||
return &Clone{
|
return &Clone{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expression,
|
Expression,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
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
|
||||||
@ -19,7 +17,6 @@ type Closure struct {
|
|||||||
|
|
||||||
func NewClosure(Params []node.Node, Uses []node.Node, ReturnType node.Node, Stmts []node.Node, Static bool, ReturnsRef bool, PhpDocComment string) *Closure {
|
func NewClosure(Params []node.Node, Uses []node.Node, ReturnType node.Node, Stmts []node.Node, Static bool, ReturnsRef bool, PhpDocComment string) *Closure {
|
||||||
return &Closure{
|
return &Closure{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
ReturnsRef,
|
ReturnsRef,
|
||||||
Static,
|
Static,
|
||||||
@ -48,15 +45,6 @@ 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
|
||||||
|
@ -1,20 +1,17 @@
|
|||||||
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) *ClusureUse {
|
func NewClusureUse(Variable node.Node, ByRef bool) *ClusureUse {
|
||||||
return &ClusureUse{
|
return &ClusureUse{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
ByRef,
|
ByRef,
|
||||||
Variable,
|
Variable,
|
||||||
@ -36,15 +33,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *ConstFetch {
|
func NewConstFetch(Constant node.Node) *ConstFetch {
|
||||||
return &ConstFetch{
|
return &ConstFetch{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Constant,
|
Constant,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *Empty {
|
func NewEmpty(Expression node.Node) *Empty {
|
||||||
return &Empty{
|
return &Empty{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expression,
|
Expression,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *ErrorSuppress {
|
func NewErrorSuppress(Expression node.Node) *ErrorSuppress {
|
||||||
return &ErrorSuppress{
|
return &ErrorSuppress{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expression,
|
Expression,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *Eval {
|
func NewEval(Expression node.Node) *Eval {
|
||||||
return &Eval{
|
return &Eval{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expression,
|
Expression,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,20 +1,17 @@
|
|||||||
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) *Exit {
|
func NewExit(Expr node.Node, IsDie bool) *Exit {
|
||||||
return &Exit{
|
return &Exit{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expr,
|
Expr,
|
||||||
IsDie,
|
IsDie,
|
||||||
@ -36,15 +33,6 @@ 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
|
||||||
|
@ -1,20 +1,17 @@
|
|||||||
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) *FunctionCall {
|
func NewFunctionCall(Function node.Node, Arguments []node.Node) *FunctionCall {
|
||||||
return &FunctionCall{
|
return &FunctionCall{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Function,
|
Function,
|
||||||
Arguments,
|
Arguments,
|
||||||
@ -34,15 +31,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *Include {
|
func NewInclude(Expression node.Node) *Include {
|
||||||
return &Include{
|
return &Include{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expression,
|
Expression,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *IncludeOnce {
|
func NewIncludeOnce(Expression node.Node) *IncludeOnce {
|
||||||
return &IncludeOnce{
|
return &IncludeOnce{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expression,
|
Expression,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,20 +1,17 @@
|
|||||||
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) *InstanceOf {
|
func NewInstanceOf(Expr node.Node, Class node.Node) *InstanceOf {
|
||||||
return &InstanceOf{
|
return &InstanceOf{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expr,
|
Expr,
|
||||||
Class,
|
Class,
|
||||||
@ -34,15 +31,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *Isset {
|
func NewIsset(Variables []node.Node) *Isset {
|
||||||
return &Isset{
|
return &Isset{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variables,
|
Variables,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *List {
|
func NewList(Items []node.Node) *List {
|
||||||
return &List{
|
return &List{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Items,
|
Items,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
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
|
||||||
@ -15,7 +13,6 @@ type MethodCall struct {
|
|||||||
|
|
||||||
func NewMethodCall(Variable node.Node, Method node.Node, Arguments []node.Node) *MethodCall {
|
func NewMethodCall(Variable node.Node, Method node.Node, Arguments []node.Node) *MethodCall {
|
||||||
return &MethodCall{
|
return &MethodCall{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Method,
|
Method,
|
||||||
@ -36,15 +33,6 @@ 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
|
||||||
|
@ -1,20 +1,17 @@
|
|||||||
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) *New {
|
func NewNew(Class node.Node, Arguments []node.Node) *New {
|
||||||
return &New{
|
return &New{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Class,
|
Class,
|
||||||
Arguments,
|
Arguments,
|
||||||
@ -34,15 +31,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *PostDec {
|
func NewPostDec(Variable node.Node) *PostDec {
|
||||||
return &PostDec{
|
return &PostDec{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *PostInc {
|
func NewPostInc(Variable node.Node) *PostInc {
|
||||||
return &PostInc{
|
return &PostInc{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *PreDec {
|
func NewPreDec(Variable node.Node) *PreDec {
|
||||||
return &PreDec{
|
return &PreDec{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *PreInc {
|
func NewPreInc(Variable node.Node) *PreInc {
|
||||||
return &PreInc{
|
return &PreInc{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *Print {
|
func NewPrint(Expression node.Node) *Print {
|
||||||
return &Print{
|
return &Print{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expression,
|
Expression,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,20 +1,17 @@
|
|||||||
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) *PropertyFetch {
|
func NewPropertyFetch(Variable node.Node, Property node.Node) *PropertyFetch {
|
||||||
return &PropertyFetch{
|
return &PropertyFetch{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Variable,
|
Variable,
|
||||||
Property,
|
Property,
|
||||||
@ -34,15 +31,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *Require {
|
func NewRequire(Expression node.Node) *Require {
|
||||||
return &Require{
|
return &Require{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expression,
|
Expression,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *RequireOnce {
|
func NewRequireOnce(Expression node.Node) *RequireOnce {
|
||||||
return &RequireOnce{
|
return &RequireOnce{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expression,
|
Expression,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *ShellExec {
|
func NewShellExec(Parts []node.Node) *ShellExec {
|
||||||
return &ShellExec{
|
return &ShellExec{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Parts,
|
Parts,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *ShortArray {
|
func NewShortArray(Items []node.Node) *ShortArray {
|
||||||
return &ShortArray{
|
return &ShortArray{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Items,
|
Items,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *ShortList {
|
func NewShortList(Items []node.Node) *ShortList {
|
||||||
return &ShortList{
|
return &ShortList{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Items,
|
Items,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
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
|
||||||
@ -15,7 +13,6 @@ type StaticCall struct {
|
|||||||
|
|
||||||
func NewStaticCall(Class node.Node, Call node.Node, Arguments []node.Node) *StaticCall {
|
func NewStaticCall(Class node.Node, Call node.Node, Arguments []node.Node) *StaticCall {
|
||||||
return &StaticCall{
|
return &StaticCall{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Class,
|
Class,
|
||||||
Call,
|
Call,
|
||||||
@ -36,15 +33,6 @@ 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
|
||||||
|
@ -1,20 +1,17 @@
|
|||||||
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) *StaticPropertyFetch {
|
func NewStaticPropertyFetch(Class node.Node, Property node.Node) *StaticPropertyFetch {
|
||||||
return &StaticPropertyFetch{
|
return &StaticPropertyFetch{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Class,
|
Class,
|
||||||
Property,
|
Property,
|
||||||
@ -34,15 +31,6 @@ 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
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
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
|
||||||
@ -15,7 +13,6 @@ type Ternary struct {
|
|||||||
|
|
||||||
func NewTernary(Condition node.Node, IfTrue node.Node, IfFalse node.Node) *Ternary {
|
func NewTernary(Condition node.Node, IfTrue node.Node, IfFalse node.Node) *Ternary {
|
||||||
return &Ternary{
|
return &Ternary{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Condition,
|
Condition,
|
||||||
IfTrue,
|
IfTrue,
|
||||||
@ -36,15 +33,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *UnaryMinus {
|
func NewUnaryMinus(Expression node.Node) *UnaryMinus {
|
||||||
return &UnaryMinus{
|
return &UnaryMinus{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expression,
|
Expression,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *UnaryPlus {
|
func NewUnaryPlus(Expression node.Node) *UnaryPlus {
|
||||||
return &UnaryPlus{
|
return &UnaryPlus{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expression,
|
Expression,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *Variable {
|
func NewVariable(VarName node.Node) *Variable {
|
||||||
return &Variable{
|
return &Variable{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
VarName,
|
VarName,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,20 +1,17 @@
|
|||||||
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) *Yield {
|
func NewYield(Key node.Node, Value node.Node) *Yield {
|
||||||
return &Yield{
|
return &Yield{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Key,
|
Key,
|
||||||
Value,
|
Value,
|
||||||
@ -34,15 +31,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *YieldFrom {
|
func NewYieldFrom(Expression node.Node) *YieldFrom {
|
||||||
return &YieldFrom{
|
return &YieldFrom{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Expression,
|
Expression,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,16 +1,12 @@
|
|||||||
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) *Identifier {
|
func NewIdentifier(Value string) *Identifier {
|
||||||
return &Identifier{
|
return &Identifier{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Value,
|
Value,
|
||||||
}
|
}
|
||||||
@ -31,15 +27,6 @@ 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
|
||||||
|
@ -11,7 +11,6 @@ type FullyQualified struct {
|
|||||||
func NewFullyQualified(Parts []node.Node) *FullyQualified {
|
func NewFullyQualified(Parts []node.Node) *FullyQualified {
|
||||||
return &FullyQualified{
|
return &FullyQualified{
|
||||||
Name{
|
Name{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Parts,
|
Parts,
|
||||||
},
|
},
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *Name {
|
func NewName(Parts []node.Node) *Name {
|
||||||
return &Name{
|
return &Name{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Parts,
|
Parts,
|
||||||
}
|
}
|
||||||
@ -32,15 +29,6 @@ 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
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
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) *NamePart {
|
func NewNamePart(Value string) *NamePart {
|
||||||
return &NamePart{
|
return &NamePart{
|
||||||
nil,
|
|
||||||
nil,
|
nil,
|
||||||
Value,
|
Value,
|
||||||
}
|
}
|
||||||
@ -34,15 +31,6 @@ 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
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user