Lines Matching refs:Value
42 Value Expression member
50 …return fmt.Sprintf("%s@%s %s %s (%s) %t", a.Name, a.EqualsPos, a.Assigner, a.Value, a.OrigValue, a…
54 func (a *Assignment) End() scanner.Position { return a.Value.End() }
94 Value Expression member
99 ret.Value = p.Value.Copy()
104 return fmt.Sprintf("%s@%s: %s", p.Name, p.ColonPos, p.Value)
108 func (p *Property) End() scanner.Position { return p.Value.End() }
193 Value Expression member
204 return x.Value.Eval()
216 x.Value, x.OperatorPos)
222 Value Expression member
234 return x.Value.Eval()
238 return x.Name + " = " + x.Value.String()
241 func (x *Variable) Type() Type { return x.Value.Type() }
336 Value string member
340 func (x *String) End() scanner.Position { return endPos(x.LiteralPos, len(x.Value)+2) }
352 return fmt.Sprintf("%q@%s", x.Value, x.LiteralPos)
361 Value int64 member
378 return fmt.Sprintf("%q@%s", x.Value, x.LiteralPos)
387 Value bool member
404 return fmt.Sprintf("%t@%s", x.Value, x.LiteralPos)