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

13 lines
199 B
Go
Raw Normal View History

2017-12-12 21:26:00 +00:00
package binary_op
import (
"github.com/z7zmey/php-parser/node"
)
type BinaryOp struct {
2017-12-29 15:53:13 +00:00
attributes map[string]interface{}
2017-12-31 10:59:22 +00:00
position *node.Position
2018-01-04 21:26:04 +00:00
Left node.Node
Right node.Node
2017-12-12 21:26:00 +00:00
}