php-parser/node/expr/binary_op/equal.go
2017-12-27 19:55:58 +02:00

24 lines
302 B
Go

package binary_op
import (
"github.com/z7zmey/php-parser/node"
)
func (n Equal) Name() string {
return "Equal"
}
type Equal struct {
BinaryOp
}
func NewEqual(variable node.Node, expression node.Node) node.Node {
return Equal{
BinaryOp{
"BinaryEqual",
variable,
expression,
},
}
}