Lines Matching defs:Map
62 Map anonMember
439 type Map struct { struct
440 LBracePos scanner.Position
441 RBracePos scanner.Position
442 Properties []*Property
445 func (x *Map) Pos() scanner.Position { return x.LBracePos }
446 func (x *Map) End() scanner.Position { return endPos(x.RBracePos, 1) }
448 func (x *Map) Copy() Expression {
457 func (x *Map) Eval(scope *Scope) (Expression, error) {
478 func (x *Map) PrintfInto(value string) error {
483 func (x *Map) MarkReferencedVariables(scope *Scope) {
489 func (x *Map) String() string {
498 func (x *Map) Type() Type { return MapType }
502 func (x *Map) GetProperty(name string) (Property *Property, found bool) {
507 func (x *Map) getPropertyImpl(name string) (Property *Property, found bool, index int) {
517 func (x *Map) RemoveProperty(propertyName string) (removed bool) {
528 func (x *Map) MovePropertyContents(propertyName string, newLocation string) (removed bool) {