NewStruct creates an Expr value representing a struct literal with a given type name and a set of field initializers.
(id int64, typeName string, fields []EntryExpr)
| 70 | // NewStruct creates an Expr value representing a struct literal with a given type name and a |
| 71 | // set of field initializers. |
| 72 | NewStruct(id int64, typeName string, fields []EntryExpr) Expr |
| 73 | |
| 74 | // NewStructField creates a StructField with a given field name, value, and a flag indicating |
| 75 | // whether the field is optionally set. |
no outgoing calls