diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-24 20:58:09 +0100 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-07 14:23:18 -0800 |
commit | 32eb49ba04865bd99dc4254661e83d65738b1fd5 (patch) | |
tree | 494816ed1cea2603b61ab68dcdf5094aebc27d45 /src/jsifier.js | |
parent | df6018759a472685fee5fafd188f091dab5fd4fd (diff) |
fix merge error
Diffstat (limited to 'src/jsifier.js')
-rw-r--r-- | src/jsifier.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jsifier.js b/src/jsifier.js index 90e74db6..3a9d6ab5 100644 --- a/src/jsifier.js +++ b/src/jsifier.js @@ -704,8 +704,8 @@ function JSify(data, functionsOnly, givenFunctions) { if (PRINT_SPLIT_FILE_MARKER) { func.JS += '\n//FUNCTION_END_MARKER_OF_SOURCE_FILE_' + associatedSourceFile + '\n'; } - - if (!ASM_JS && (EXPORT_ALL || (func.ident in EXPORTED_GLOBALS))) { + + if (!ASM_JS && (EXPORT_ALL || (func.ident in EXPORTED_FUNCTIONS))) { func.JS += 'Module["' + func.ident + '"] = ' + func.ident + ';'; } |