Normalize header. Fix english.

This commit is contained in:
Lukas Prokop 2014-05-02 17:23:26 +02:00 committed by Lukas Prokop
parent ecddac6467
commit 7c6e9a3635
2 changed files with 5 additions and 1 deletions

View file

@ -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;

View file

@ -13,6 +13,10 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
// Scratch HTML5 Player
// Reporter.js
// Tim Mickel, March 2012
'use strict';
var Reporter = function(data) {