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

12 lines
144 B
Go
Raw Normal View History

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