package binary_op
import (
"github.com/z7zmey/php-parser/node"
)
type BinaryOp struct {
position *node.Position
Left node.Node
Right node.Node
}