diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-05 14:09:46 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-05 14:09:46 -0800 |
commit | d2f91efe1fcf98f59a8d142880e1910ddd2ff726 (patch) | |
tree | e4ba34462a7aba9e8073188cc1ac02e93cf8eae7 /src/shell_sharedlib.js | |
parent | 60a4cbdba470cb5e7500d9155fbbff9167c5094a (diff) |
partial support for runtime linking of separately-compiled modules (only functions)
Diffstat (limited to 'src/shell_sharedlib.js')
-rw-r--r-- | src/shell_sharedlib.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell_sharedlib.js b/src/shell_sharedlib.js index 60a78323..1d34c73e 100644 --- a/src/shell_sharedlib.js +++ b/src/shell_sharedlib.js @@ -1,5 +1,5 @@ // Capture the output of this into a variable, if you want -(function(FUNCTION_TABLE_OFFSET) { +(function(FUNCTION_TABLE_OFFSET, globalScope) { var Module = {}; var args = []; Module.arguments = []; |