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) {
|
var Block = function(opAndArgs, optionalSubstack) {
|
||||||
this.op = opAndArgs[0];
|
this.op = opAndArgs[0];
|
||||||
this.primFcn = interp.lookupPrim(this.op);
|
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.isLoop = false; // set to true for loop blocks the first time they run
|
||||||
this.substack = optionalSubstack;
|
this.substack = optionalSubstack;
|
||||||
this.subStack2 = null;
|
this.subStack2 = null;
|
||||||
|
|
|
@ -13,6 +13,10 @@
|
||||||
// along with this program; if not, write to the Free Software
|
// along with this program; if not, write to the Free Software
|
||||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
|
// Scratch HTML5 Player
|
||||||
|
// Reporter.js
|
||||||
|
// Tim Mickel, March 2012
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var Reporter = function(data) {
|
var Reporter = function(data) {
|
||||||
|
|
Reference in a new issue