GetDef returns the introspection definition for this function call
(modDef *moduleDef)
| 380 | |
| 381 | // GetDef returns the introspection definition for this function call |
| 382 | func (f FunctionCall) GetDef(modDef *moduleDef) (*modFunction, error) { |
| 383 | return modDef.GetObjectFunction(f.Object, cliName(f.Name)) |
| 384 | } |
| 385 | |
| 386 | // GetNextDef returns the introspection definition for the next function call, based on |
| 387 | // the current return type and name of the next function |
nothing calls this directly
no test coverage detected