| 39 | |
| 40 | |
| 41 | static String getTypeName( const EngineTypeInfo* type ) |
| 42 | { |
| 43 | if( !type ) |
| 44 | { |
| 45 | static String sVoid( "void" ); |
| 46 | return sVoid; |
| 47 | } |
| 48 | |
| 49 | return type->getFullyQualifiedExportName(); |
| 50 | } |
| 51 | |
| 52 | static const char* getDocString( const EngineExport* exportInfo ) |
| 53 | { |
no test coverage detected