Index: src/runtime.js |
diff --git a/src/runtime.js b/src/runtime.js |
index a49bc8448dfa52022880ef78e4e10eff632b7a12..89dea0fd08842015070d2abd58470e488b6bc093 100644 |
--- a/src/runtime.js |
+++ b/src/runtime.js |
@@ -469,6 +469,11 @@ function APPLY_OVERFLOW(length) { |
} |
+function STACK_OVERFLOW(length) { |
Michael Starzinger
2014/04/08 11:58:40
nit: I don't see a particular reason why we need t
ulan
2014/04/08 14:00:56
Done. Removed APPLY_OVERFLOW
|
+ throw %MakeRangeError('stack_overflow', []); |
+} |
+ |
+ |
// Convert the receiver to an object - forward to ToObject. |
function TO_OBJECT() { |
return %ToObject(this); |