| 394 | } |
| 395 | |
| 396 | void LuaEngine::setInstructionLimit(uint64_t instructionLimit) { |
| 397 | if (instructionLimit != m_instructionLimit) { |
| 398 | m_instructionLimit = instructionLimit; |
| 399 | updateCountHook(); |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | uint64_t LuaEngine::instructionLimit() const { |
| 404 | return m_instructionLimit; |
no outgoing calls