NewMap implements the ExprHelper interface method.
(entries ...ast.EntryExpr)
| 415 | |
| 416 | // NewMap implements the ExprHelper interface method. |
| 417 | func (e *exprHelper) NewMap(entries ...ast.EntryExpr) ast.Expr { |
| 418 | return e.exprFactory.NewMap(e.nextMacroID(), entries) |
| 419 | } |
| 420 | |
| 421 | // NewMapEntry implements the ExprHelper interface method. |
| 422 | func (e *exprHelper) NewMapEntry(key ast.Expr, val ast.Expr, optional bool) ast.EntryExpr { |
nothing calls this directly
no test coverage detected