php-parser/node/expr/binary_op/binary_op.go
2017-12-31 13:15:50 +02:00

14 lines
218 B
Go

package binary_op
import (
"github.com/z7zmey/php-parser/node"
)
type BinaryOp struct {
name string
attributes map[string]interface{}
position *node.Position
left node.Node
right node.Node
}