StmtFunc represents a user defined function. It binds the specified name to the supplied function in the current scope and irrespective of the order of definition.
| 6288 | // the supplied function in the current scope and irrespective of the order of |
| 6289 | // definition. |
| 6290 | type StmtFunc struct { |
| 6291 | interfaces.Textarea |
| 6292 | |
| 6293 | data *interfaces.Data |
| 6294 | |
| 6295 | Name string |
| 6296 | Func interfaces.Expr |
| 6297 | Type *types.Type |
| 6298 | } |
| 6299 | |
| 6300 | // String returns a short representation of this statement. |
| 6301 | func (obj *StmtFunc) String() string { |
nothing calls this directly
no outgoing calls
no test coverage detected