| 93 | } |
| 94 | |
| 95 | Value* Function::getParameterArgument(const Context& ctx, int index) const |
| 96 | { |
| 97 | Parameter* p = parameters.at(index); |
| 98 | return ctx.getArgument(index,p->getName()); |
| 99 | } |
| 100 | |
| 101 | QString Function::getDescription() const |
| 102 | { |
nothing calls this directly
no test coverage detected