| 50 | } |
| 51 | |
| 52 | static const char* getDocString(const EngineExport* exportInfo) |
| 53 | { |
| 54 | if (!exportInfo->getDocString()) |
| 55 | return ""; |
| 56 | |
| 57 | return exportInfo->getDocString(); |
| 58 | } |
| 59 | |
| 60 | template< typename T > |
| 61 | inline T getArgValue(const EngineFunctionDefaultArguments* defaultArgs, U32 idx) |
no test coverage detected