internal
| 1559 | |
| 1560 | // internal |
| 1561 | asCString asCScriptEngine::GetFunctionDeclaration(int funcId) |
| 1562 | { |
| 1563 | asCString str; |
| 1564 | asCScriptFunction *func = GetScriptFunction(funcId); |
| 1565 | if( func ) |
| 1566 | str = func->GetDeclarationStr(); |
| 1567 | |
| 1568 | return str; |
| 1569 | } |
| 1570 | |
| 1571 | // internal |
| 1572 | asCScriptFunction *asCScriptEngine::GetScriptFunction(int funcId) const |
no test coverage detected