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