Home
last modified time | relevance | path

Searched defs:Map (Results 1 – 2 of 2) sorted by relevance

/build/blueprint/parser/
Dast.go62 Map anonMember
266 type Map struct { struct
267 LBracePos scanner.Position
268 RBracePos scanner.Position
269 Properties []*Property
270 MapItems []*MapItem
273 func (x *Map) Pos() scanner.Position { return x.LBracePos }
274 func (x *Map) End() scanner.Position { return endPos(x.RBracePos, 1) }
276 func (x *Map) Copy() Expression {
289 func (x *Map) Eval() Expression {
[all …]
/build/blueprint/microfactory/
Dmicrofactory.go98 func (c *Config) Map(pkgPrefix, pathPrefix string) error { func