diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-07-01 11:21:29 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-01 11:21:29 -0700 |
commit | 01708b7529bc4305272277c38c8f6c91ad27e367 (patch) | |
tree | c0c52c66bc1e469c7b10b1fbd0b02bf8e1174399 /src/jsifier.js | |
parent | 6fe5cf7d33f63d0c73e544d0d2c783e60e8d52fc (diff) | |
parent | 1f8cdac6b6e3bbc601b4bf955451790cabb4a469 (diff) |
Merge pull request #1335 from inolen/module_exports
Module export improvements
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 14c9cfbe..885fbc30 100644 --- a/src/jsifier.js +++ b/src/jsifier.js @@ -44,7 +44,7 @@ function JSify(data, functionsOnly, givenFunctions) { // things out as they are ready. var shellParts = read(shellFile).split('{{BODY}}'); - print(shellParts[0]); + print(processMacros(preprocess(shellParts[0]))); var preFile = BUILD_AS_SHARED_LIB ? 'preamble_sharedlib.js' : 'preamble.js'; var pre = processMacros(preprocess(read(preFile).replace('{{RUNTIME}}', getRuntime()))); print(pre); @@ -1767,7 +1767,7 @@ function JSify(data, functionsOnly, givenFunctions) { print(postParts[1]); var shellParts = read(shellFile).split('{{BODY}}'); - print(shellParts[1]); + print(processMacros(preprocess(shellParts[1]))); // Print out some useful metadata if (EMIT_GENERATED_FUNCTIONS || PGO) { var generatedFunctions = JSON.stringify(keys(Functions.implementedFunctions).filter(function(func) { |