| 977 | } |
| 978 | |
| 979 | const void* nullcGetModule(const char* path) |
| 980 | { |
| 981 | char fullPath[256]; |
| 982 | SafeSprintf(fullPath, 256, "%s%s", BinaryCache::GetImportPath(), path); |
| 983 | const char *bytecode = BinaryCache::GetBytecode(fullPath); |
| 984 | if(!bytecode) |
| 985 | bytecode = BinaryCache::GetBytecode(path); |
| 986 | return bytecode; |
| 987 | } |
| 988 | |
| 989 | #ifndef NULLC_NO_EXECUTOR |
| 990 | ExternTypeInfo* nullcDebugTypeInfo(unsigned int *count) |
no test coverage detected