NewList implements the ExprHelper interface method.
(elems ...ast.Expr)
| 410 | |
| 411 | // NewList implements the ExprHelper interface method. |
| 412 | func (e *exprHelper) NewList(elems ...ast.Expr) ast.Expr { |
| 413 | return e.exprFactory.NewList(e.nextMacroID(), elems, []int32{}) |
| 414 | } |
| 415 | |
| 416 | // NewMap implements the ExprHelper interface method. |
| 417 | func (e *exprHelper) NewMap(entries ...ast.EntryExpr) ast.Expr { |
nothing calls this directly
no test coverage detected