cwise-compiler
Advanced tools
Comparing version 1.1.2 to 1.1.3
@@ -0,0 +0,0 @@ "use strict" |
@@ -29,3 +29,5 @@ "use strict" | ||
} | ||
code.push("var " + vars.join(",")) | ||
if (vars.length > 0) { | ||
code.push("var " + vars.join(",")) | ||
} | ||
//Scan loop | ||
@@ -323,3 +325,5 @@ for(i=dimension-1; i>=0; --i) { // Start at largest stride and work your way inwards | ||
vars = vars.concat(thisVars) | ||
code.push("var " + vars.join(",")) | ||
if (vars.length > 0) { | ||
code.push("var " + vars.join(",")) | ||
} | ||
for(var i=0; i<proc.arrayArgs.length; ++i) { | ||
@@ -326,0 +330,0 @@ code.push("p"+i+"|=0") |
@@ -0,0 +0,0 @@ "use strict" |
{ | ||
"name": "cwise-compiler", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "cwise's internal compiler", | ||
@@ -5,0 +5,0 @@ "main": "compiler.js", |
@@ -0,0 +0,0 @@ cwise-compiler |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
515
25735