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