(ctx any, entries ...ast.EntryExpr)
| 98 | } |
| 99 | |
| 100 | func (p *parserHelper) newMap(ctx any, entries ...ast.EntryExpr) ast.Expr { |
| 101 | return p.exprFactory.NewMap(p.newID(ctx), entries) |
| 102 | } |
| 103 | |
| 104 | func (p *parserHelper) newMapEntry(entryID int64, key ast.Expr, value ast.Expr, optional bool) ast.EntryExpr { |
| 105 | return p.exprFactory.NewMapEntry(entryID, key, value, optional) |
no test coverage detected