Skip to content

Commit 2bafed8

Browse files
committedJan 6, 2014
Merge pull request #1980 from coolwanglu/pr_clean
tokenize() does not accept a 2nd parameter
2 parents f0ce3c4 + 4f03056 commit 2bafed8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/intertyper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ function intertyper(lines, sidePass, baseLineNums) {
241241
if (mainPass && /^}.*/.test(line)) {
242242
inFunction = false;
243243
if (mainPass) {
244-
var func = funcHeaderHandler({ tokens: tokenize(currFunctionLines[0], currFunctionLineNum) });
244+
var func = funcHeaderHandler({ tokens: tokenize(currFunctionLines[0]) });
245245

246246
if (SKIP_STACK_IN_SMALL && /emscripten_autodebug/.exec(func.ident)) {
247247
warnOnce('Disabling SKIP_STACK_IN_SMALL because we are apparently processing autodebugger data');

0 commit comments

Comments
 (0)