Lines Matching defs:Map
62 Map anonMember
243 type Map struct { struct
244 LBracePos scanner.Position
245 RBracePos scanner.Position
246 Properties []*Property
249 func (x *Map) Pos() scanner.Position { return x.LBracePos }
250 func (x *Map) End() scanner.Position { return endPos(x.RBracePos, 1) }
252 func (x *Map) Copy() Expression {
261 func (x *Map) Eval() Expression {
265 func (x *Map) String() string {
274 func (x *Map) Type() Type { return MapType }
278 func (x *Map) GetProperty(name string) (Property *Property, found bool) {
283 func (x *Map) getPropertyImpl(name string) (Property *Property, found bool, index int) {
293 func (x *Map) RemoveProperty(propertyName string) (removed bool) {