(ctx any, elements []ast.Expr, optionals ...int32)
| 98 | } |
| 99 | |
| 100 | func (p *parserHelper) newList(ctx any, elements []ast.Expr, optionals ...int32) ast.Expr { |
| 101 | return p.exprFactory.NewList(p.newID(ctx), elements, optionals) |
| 102 | } |
| 103 | |
| 104 | func (p *parserHelper) newMap(ctx any, entries ...ast.EntryExpr) ast.Expr { |
| 105 | return p.exprFactory.NewMap(p.newID(ctx), entries) |
no test coverage detected