php-parser/node/expr/binary_op/n_binary_op.go

12 lines
144 B
Go
Raw Normal View History

2017-12-12 23:26:00 +02:00
package binary_op
import (
"github.com/z7zmey/php-parser/node"
)
2018-01-11 19:33:25 +02:00
// BinaryOp node
2017-12-12 23:26:00 +02:00
type BinaryOp struct {
2018-01-09 15:51:32 +02:00
Left node.Node
Right node.Node
2017-12-12 23:26:00 +02:00
}