Lines Matching defs:Operator
213 type Operator struct { struct
214 Args [2]Expression
215 Operator rune member
216 OperatorPos scanner.Position
217 Value Expression
220 func (x *Operator) Copy() Expression {
227 func (x *Operator) Eval() Expression {
231 func (x *Operator) Type() Type {
235 func (x *Operator) Pos() scanner.Position { return x.Args[0].Pos() }
236 func (x *Operator) End() scanner.Position { return x.Args[1].End() }
238 func (x *Operator) String() string {