There was an error while loading. Please reload this page.
1 parent 9e6162d commit fa029e5Copy full SHA for fa029e5
node_translators/global.js
@@ -3,6 +3,7 @@
3
4
module.exports = function (node, indent) {
5
var codegen = this.process.bind(this);
6
- return 'global ' + node[1].map(function (x) { return codegen(x, indent); }).join(',' + this.ws);
+ return 'global ' + node.items.map(function (x) {
7
+ return codegen(x, indent);
8
+ }).join(',' + this.ws);
9
};
-
0 commit comments