Normalize header. Fix english.
This commit is contained in:
parent
ecddac6467
commit
7c6e9a3635
2 changed files with 5 additions and 1 deletions
|
@ -23,7 +23,7 @@
|
|||
var Block = function(opAndArgs, optionalSubstack) {
|
||||
this.op = opAndArgs[0];
|
||||
this.primFcn = interp.lookupPrim(this.op);
|
||||
this.args = opAndArgs.slice(1); // arguments can be either or constants (numbers, boolean strings, etc.) or expressions (Blocks)
|
||||
this.args = opAndArgs.slice(1); // arguments can be either constants (numbers, boolean strings, etc.) or expressions (Blocks)
|
||||
this.isLoop = false; // set to true for loop blocks the first time they run
|
||||
this.substack = optionalSubstack;
|
||||
this.subStack2 = null;
|
||||
|
|
Reference in a new issue