php-parser/node/expr/binary_op/binary_op.go
2017-12-29 17:53:13 +02:00

13 lines
191 B
Go

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