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