aboutsummaryrefslogtreecommitdiff
path: root/src/jsifier.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/jsifier.js')
-rw-r--r--src/jsifier.js11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/jsifier.js b/src/jsifier.js
index 6ef9781c..eab4a88d 100644
--- a/src/jsifier.js
+++ b/src/jsifier.js
@@ -1527,12 +1527,15 @@ function JSify(data, functionsOnly, givenFunctions) {
} else {
print('/* no memory initializer */'); // test purposes
}
+
+ // Run postsets right before main, and after the memory initializer has been set up
+ if (itemsDict.GlobalVariablePostSet.length > 0) {
+ print('__ATMAIN__.push(function() {\n');
+ print(itemsDict.GlobalVariablePostSet.map(function(item) { return item.JS }).join('\n'));
+ print('});\n');
+ }
}
- // Run postsets right before main, and after the memory initializer has been set up
- print('__ATMAIN__.push(function() {\n');
- print(itemsDict.GlobalVariablePostSet.map(function(item) { return item.JS }).join('\n'));
- print('});\n');
return;
}