NewStructField implements the ExprHelper interface method.
(field string, init ast.Expr, optional bool)
| 434 | |
| 435 | // NewStructField implements the ExprHelper interface method. |
| 436 | func (e *exprHelper) NewStructField(field string, init ast.Expr, optional bool) ast.EntryExpr { |
| 437 | return e.exprFactory.NewStructField(e.nextMacroID(), field, init, optional) |
| 438 | } |
| 439 | |
| 440 | // NewComprehension implements the ExprHelper interface method. |
| 441 | func (e *exprHelper) NewComprehension( |
nothing calls this directly
no test coverage detected