Lines Matching defs:Map
62 Map anonMember
240 type Map struct { struct
241 LBracePos scanner.Position
242 RBracePos scanner.Position
243 Properties []*Property
246 func (x *Map) Pos() scanner.Position { return x.LBracePos }
247 func (x *Map) End() scanner.Position { return endPos(x.RBracePos, 1) }
249 func (x *Map) Copy() Expression {
258 func (x *Map) Eval() Expression {
262 func (x *Map) String() string {
271 func (x *Map) Type() Type { return MapType }
275 func (x *Map) GetProperty(name string) (Property *Property, found bool) {
280 func (x *Map) getPropertyImpl(name string) (Property *Property, found bool, index int) {
290 func (x *Map) RemoveProperty(propertyName string) (removed bool) {