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