php-parser/node/expr/binary_op/binary_op.go
2018-01-04 20:29:07 +02:00

13 lines
199 B
Go

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