diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-07 16:04:55 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-07 16:04:55 -0800 |
commit | cda70ff4768b521f8f1d02483352fa997798324e (patch) | |
tree | c982bdcd5453c6fcda1207c510db45df998a4e4e /src/settings.js | |
parent | 2101d2d569eb129798389d84eed20d41255e9319 (diff) |
automatically disable SKIP_STACK_IN_SMALL when processing autodebugger data, to not flood the stack
Diffstat (limited to 'src/settings.js')
-rw-r--r-- | src/settings.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/settings.js b/src/settings.js index 84b68b54..1e041508 100644 --- a/src/settings.js +++ b/src/settings.js @@ -85,7 +85,8 @@ var SKIP_STACK_IN_SMALL = 1; // When enabled, does not push/pop the stack at all // may allocate stack later, and in a loop, this can be // very bad. In particular, when debugging, printf()ing // a lot can exhaust the stack very fast, with this option. - // In particular, be careful with the autodebugger! + // In particular, be careful with the autodebugger! (We do turn + // this off automatically in that case, though.) var INLINE_LIBRARY_FUNCS = 1; // Will inline library functions that have __inline defined var CLOSURE_INLINE_PREVENTION_LINES = 50; // Functions of this number of lines or larger will have // code generated that tells the closure compiler not to |