(fieldID int64, field string, value ast.Expr, optional bool)
| 110 | } |
| 111 | |
| 112 | func (p *parserHelper) newObjectField(fieldID int64, field string, value ast.Expr, optional bool) ast.EntryExpr { |
| 113 | return p.exprFactory.NewStructField(fieldID, field, value, optional) |
| 114 | } |
| 115 | |
| 116 | func (p *parserHelper) newComprehension(ctx any, |
| 117 | iterRange ast.Expr, |
no test coverage detected