aboutsummaryrefslogtreecommitdiff
path: root/src/intertyper.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-04-11 14:20:39 -0700
committerAlon Zakai <alonzakai@gmail.com>2012-04-11 14:20:39 -0700
commitca58e841497c9a3f0ee2af91b436000ef8afe8cc (patch)
treec7b3565e61a813745f760b9480209068dcb362a7 /src/intertyper.js
parent332e7a0ffb65a4b86efa8bb2d10110515feb2d4e (diff)
show compiler warnings to console, not in source
Diffstat (limited to 'src/intertyper.js')
-rw-r--r--src/intertyper.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intertyper.js b/src/intertyper.js
index 26f55392..0f9ce659 100644
--- a/src/intertyper.js
+++ b/src/intertyper.js
@@ -118,7 +118,7 @@ function intertyper(data, sidePass, baseLineNums) {
var func = funcHeader.processItem(tokenizer.processItem({ lineText: currFunctionLines[0], lineNum: currFunctionLineNum }, true))[0];
if (SKIP_STACK_IN_SMALL && /emscripten_autodebug/.exec(func.ident)) {
- warn('Disabling SKIP_STACK_IN_SMALL because we are apparently processing autodebugger data');
+ warnOnce('Disabling SKIP_STACK_IN_SMALL because we are apparently processing autodebugger data');
SKIP_STACK_IN_SMALL = 0;
}