internal
| 248 | |
| 249 | // internal |
| 250 | void asCModule::JITCompile() |
| 251 | { |
| 252 | if( !m_engine->jitCompiler ) |
| 253 | return; |
| 254 | |
| 255 | for (unsigned int i = 0; i < m_scriptFunctions.GetLength(); i++) |
| 256 | m_scriptFunctions[i]->JITCompile(); |
| 257 | } |
| 258 | |
| 259 | // interface |
| 260 | int asCModule::Build() |
no test coverage detected