Searched defs:Variable (Results 1 – 5 of 5) sorted by relevance
86 type Variable struct { struct87 Name *MakeString90 func (x *Variable) Pos() Pos { return x.Name.Pos() }91 func (x *Variable) End() Pos { return x.Name.End() }93 func (x *Variable) Dump() string {
213 type Variable struct { struct214 Name string215 NamePos scanner.Position216 Value Expression219 func (x *Variable) Pos() scanner.Position { return x.NamePos }220 func (x *Variable) End() scanner.Position { return x.NamePos }222 func (x *Variable) Copy() Expression {227 func (x *Variable) Eval() Expression {231 func (x *Variable) String() string {235 func (x *Variable) Type() Type { return x.Value.Type() }
39 Variable(pctx PackageContext, name, value string) methodSpec135 func (s *singletonContext) Variable(pctx PackageContext, name, value string) { func
27 type Variable interface { interface
165 Variable(pctx PackageContext, name, value string) methodSpec437 func (m *moduleContext) Variable(pctx PackageContext, name, value string) { func