Lines Matching defs:Operator
189 type Operator struct { struct
190 Args [2]Expression
191 Operator rune argument
192 OperatorPos scanner.Position
193 Value Expression
196 func (x *Operator) Copy() Expression {
203 func (x *Operator) Eval() Expression {
207 func (x *Operator) Type() Type {
211 func (x *Operator) Pos() scanner.Position { return x.Args[0].Pos() }
212 func (x *Operator) End() scanner.Position { return x.Args[1].End() }
214 func (x *Operator) String() string {