| 128 | } |
| 129 | |
| 130 | void ScriptFrame::IncreaseStackDepth() |
| 131 | { |
| 132 | if (Depth + 1 > 300) |
| 133 | BOOST_THROW_EXCEPTION(ScriptError("Stack overflow while evaluating expression: Recursion level too deep.")); |
| 134 | |
| 135 | Depth++; |
| 136 | } |
| 137 | |
| 138 | void ScriptFrame::DecreaseStackDepth() |
| 139 | { |