Browse Source

reformat boot.js

Nicolas Petton 10 years ago
parent
commit
b1413c2169
1 changed files with 908 additions and 908 deletions
  1. 908 908
      support/boot.js

+ 908 - 908
support/boot.js

@@ -1,1133 +1,1133 @@
 /* ====================================================================
-   |
-   |   Amber Smalltalk
-   |   http://amber-lang.net
-   |
-   ======================================================================
-
-   ======================================================================
-   |
-   | Copyright (c) 2010-2013
-   | Nicolas Petton <petton.nicolas@gmail.com>
-   |
-   | Copyright (c) 2012-2013
-   | The Amber team https://github.com/amber-smalltalk?tab=members
-   | Amber contributors https://github.com/amber-smalltalk/amber/graphs/contributors
-   |
-   | Amber is released under the MIT license
-   |
-   | Permission is hereby granted, free of charge, to any person obtaining
-   | a copy of this software and associated documentation files (the
-   | 'Software'), to deal in the Software without restriction, including
-   | without limitation the rights to use, copy, modify, merge, publish,
-   | distribute, sublicense, and/or sell copies of the Software, and to
-   | permit persons to whom the Software is furnished to do so, subject to
-   | the following conditions:
-   |
-   | The above copyright notice and this permission notice shall be
-   | included in all copies or substantial portions of the Software.
-   |
-   | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
-   | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-   | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-   | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-   | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-   | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-   | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-   |
-   ==================================================================== */
+ |
+ |   Amber Smalltalk
+ |   http://amber-lang.net
+ |
+ ======================================================================
+
+ ======================================================================
+ |
+ | Copyright (c) 2010-2013
+ | Nicolas Petton <petton.nicolas@gmail.com>
+ |
+ | Copyright (c) 2012-2013
+ | The Amber team https://github.com/amber-smalltalk?tab=members
+ | Amber contributors https://github.com/amber-smalltalk/amber/graphs/contributors
+ |
+ | Amber is released under the MIT license
+ |
+ | Permission is hereby granted, free of charge, to any person obtaining
+ | a copy of this software and associated documentation files (the
+ | 'Software'), to deal in the Software without restriction, including
+ | without limitation the rights to use, copy, modify, merge, publish,
+ | distribute, sublicense, and/or sell copies of the Software, and to
+ | permit persons to whom the Software is furnished to do so, subject to
+ | the following conditions:
+ |
+ | The above copyright notice and this permission notice shall be
+ | included in all copies or substantial portions of the Software.
+ |
+ | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+ | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+ | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ |
+ ==================================================================== */
 
 
 define("amber_vm/boot", [ './browser-compatibility' ], function () {
 
-/* Reconfigurable micro composition system, https://github.com/amber-smalltalk/brikz */
+	/* Reconfigurable micro composition system, https://github.com/amber-smalltalk/brikz */
 
-function Brikz(api, apiKey, initKey) {
-	var brikz = this, backup = {};
-	apiKey = apiKey || 'exports';
-	initKey = initKey || '__init__';
+	function Brikz(api, apiKey, initKey) {
+		var brikz = this, backup = {};
+		apiKey = apiKey || 'exports';
+		initKey = initKey || '__init__';
 
-	function mixin(src, target, what) {
-		for (var keys = Object.keys(what||src), l=keys.length, i=0; i<l; ++i) {
-			var value = src[keys[i]];
-			if (typeof value !== "undefined") { target[keys[i]] = value; }
+		function mixin(src, target, what) {
+			for (var keys = Object.keys(what||src), l=keys.length, i=0; i<l; ++i) {
+				var value = src[keys[i]];
+				if (typeof value !== "undefined") { target[keys[i]] = value; }
+			}
+			return target;
 		}
-		return target;
-	}
 
-	var d={value: null, enumerable: false, configurable: true, writable: true};
-	Object.defineProperties(this, { ensure: d, rebuild: d });
-	var exclude = mixin(this, {});
+		var d={value: null, enumerable: false, configurable: true, writable: true};
+		Object.defineProperties(this, { ensure: d, rebuild: d });
+		var exclude = mixin(this, {});
 
-	this.rebuild = function () {
-		Object.keys(backup).forEach(function (key) {
-			mixin({}, api, (backup[key]||0)[apiKey]);
-		});
-		var oapi = mixin(api, {}), order = [], chk = {};
-		brikz.ensure = function(key) {
-			if (key in exclude) { return null; }
-			var b = brikz[key], bak = backup[key];
-			mixin({}, api, api);
-			while (typeof b === "function") { b = new b(brikz, api, bak); }
-			if (b && !chk[key]) { chk[key]=true; order.push(b); }
-			if (b && !b[apiKey]) { b[apiKey] = mixin(api, {}); }
-			return brikz[key] = b;
+		this.rebuild = function () {
+			Object.keys(backup).forEach(function (key) {
+				mixin({}, api, (backup[key]||0)[apiKey]);
+			});
+			var oapi = mixin(api, {}), order = [], chk = {};
+			brikz.ensure = function(key) {
+				if (key in exclude) { return null; }
+				var b = brikz[key], bak = backup[key];
+				mixin({}, api, api);
+				while (typeof b === "function") { b = new b(brikz, api, bak); }
+				if (b && !chk[key]) { chk[key]=true; order.push(b); }
+				if (b && !b[apiKey]) { b[apiKey] = mixin(api, {}); }
+				return brikz[key] = b;
+			};
+			Object.keys(brikz).forEach(function (key) { brikz.ensure(key); });
+			brikz.ensure = null;
+			mixin(oapi, mixin({}, api, api));
+			order.forEach(function(brik) { mixin(brik[apiKey] || {}, api); });
+			order.forEach(function(brik) { brik[initKey] && brik[initKey](); });
+			backup = mixin(brikz, {});
 		};
-		Object.keys(brikz).forEach(function (key) { brikz.ensure(key); });
-		brikz.ensure = null;
-		mixin(oapi, mixin({}, api, api));
-		order.forEach(function(brik) { mixin(brik[apiKey] || {}, api); });
-		order.forEach(function(brik) { brik[initKey] && brik[initKey](); });
-		backup = mixin(brikz, {});
-	};
-}
-
-/* Brikz end */
-
-function inherits(child, parent) {
-	child.prototype = Object.create(parent.prototype, {
-		constructor: { value: child,
-			enumerable: false, configurable: true, writable: true }
-	});
-	return child;
-}
-
-var globals = {};
-var api = Object.create(globals);
-var brikz = new Brikz(api);
-
-function RootBrik(brikz, st) {
-
-	/* Smalltalk foundational objects */
-
-	/* SmalltalkRoot is the hidden root of the Amber hierarchy.
-	 All objects including `Object` inherit from SmalltalkRoot */
-	function SmalltalkRoot() {}
-	function SmalltalkProtoObject() {}
-	inherits(SmalltalkProtoObject, SmalltalkRoot);
-	function SmalltalkObject() {}
-	inherits(SmalltalkObject, SmalltalkProtoObject);
-	function SmalltalkNil() {}
-	inherits(SmalltalkNil, SmalltalkObject);
-
-	this.Object = SmalltalkObject;
-	this.nil = new SmalltalkNil();
-
-	// Hidden root class of the system.
-	this.rootAsClass = {fn: SmalltalkRoot};
-
-	this.__init__ = function () {
-		st.addPackage("Kernel-Objects");
-		st.addPackage("Kernel-Infrastructure");
-		st.wrapClassName("ProtoObject", "Kernel-Objects", SmalltalkProtoObject, undefined, false);
-		st.wrapClassName("Object", "Kernel-Objects", SmalltalkObject, globals.ProtoObject, false);
-		st.wrapClassName("UndefinedObject", "Kernel-Objects", SmalltalkNil, globals.Object, false);
-	};
-}
-
-function OrganizeBrik(brikz, st) {
+	}
 
-	brikz.ensure("augments");
-	var SmalltalkObject = brikz.ensure("root").Object;
+	/* Brikz end */
 
-	function SmalltalkOrganizer () {}
-	function SmalltalkPackageOrganizer () {
-		this.elements = [];
-	}
-	function SmalltalkClassOrganizer () {
-		this.elements = [];
+	function inherits(child, parent) {
+		child.prototype = Object.create(parent.prototype, {
+			constructor: { value: child,
+						   enumerable: false, configurable: true, writable: true }
+		});
+		return child;
 	}
 
-	inherits(SmalltalkOrganizer, SmalltalkObject);
-	inherits(SmalltalkPackageOrganizer, SmalltalkOrganizer);
-	inherits(SmalltalkClassOrganizer, SmalltalkOrganizer);
-
-	this.__init__ = function () {
-		st.wrapClassName("Organizer", "Kernel-Infrastructure", SmalltalkOrganizer, globals.Object, false);
-		st.wrapClassName("PackageOrganizer", "Kernel-Infrastructure", SmalltalkPackageOrganizer, globals.Organizer, false);
-		st.wrapClassName("ClassOrganizer", "Kernel-Infrastructure", SmalltalkClassOrganizer, globals.Organizer, false);
-	};
+	var globals = {};
+	var api = Object.create(globals);
+	var brikz = new Brikz(api);
 
-	this.setupClassOrganization = function (klass) {
-		klass.organization = new SmalltalkClassOrganizer();
-		klass.organization.theClass = klass;
-	};
+	function RootBrik(brikz, st) {
 
-	this.setupPackageOrganization = function (pkg) {
-		pkg.organization = new SmalltalkPackageOrganizer();
-	};
+		/* Smalltalk foundational objects */
 
-	this.addOrganizationElement = function (owner, element) {
-		owner.organization.elements.addElement(element);
-	};
+		/* SmalltalkRoot is the hidden root of the Amber hierarchy.
+		 All objects including `Object` inherit from SmalltalkRoot */
+		function SmalltalkRoot() {}
+		function SmalltalkProtoObject() {}
+		inherits(SmalltalkProtoObject, SmalltalkRoot);
+		function SmalltalkObject() {}
+		inherits(SmalltalkObject, SmalltalkProtoObject);
+		function SmalltalkNil() {}
+		inherits(SmalltalkNil, SmalltalkObject);
 
-	this.removeOrganizationElement = function (owner, element) {
-		owner.organization.elements.removeElement(element);
-	};
-}
+		this.Object = SmalltalkObject;
+		this.nil = new SmalltalkNil();
 
-function DNUBrik(brikz, st) {
+		// Hidden root class of the system.
+		this.rootAsClass = {fn: SmalltalkRoot};
 
-	brikz.ensure("selectorConversion");
-	brikz.ensure("messageSend");
-	var manip = brikz.ensure("manipulation");
-	var rootAsClass = brikz.ensure("root").rootAsClass;
+		this.__init__ = function () {
+			st.addPackage("Kernel-Objects");
+			st.addPackage("Kernel-Infrastructure");
+			st.wrapClassName("ProtoObject", "Kernel-Objects", SmalltalkProtoObject, undefined, false);
+			st.wrapClassName("Object", "Kernel-Objects", SmalltalkObject, globals.ProtoObject, false);
+			st.wrapClassName("UndefinedObject", "Kernel-Objects", SmalltalkNil, globals.Object, false);
+		};
+	}
 
-	/* Method not implemented handlers */
+	function OrganizeBrik(brikz, st) {
 
-	var methods = [], checker = Object.create(null);
-	this.selectors = [];
+		brikz.ensure("augments");
+		var SmalltalkObject = brikz.ensure("root").Object;
 
-	this.get = function (string) {
-		var index = this.selectors.indexOf(string);
-		if(index !== -1) {
-			return methods[index];
+		function SmalltalkOrganizer () {}
+		function SmalltalkPackageOrganizer () {
+			this.elements = [];
+		}
+		function SmalltalkClassOrganizer () {
+			this.elements = [];
 		}
-		this.selectors.push(string);
-		var selector = st.selector(string);
-		checker[selector] = true;
-		var method = {jsSelector: selector, fn: createHandler(selector)};
-		methods.push(method);
-		manip.installMethod(method, rootAsClass);
-		return method;
-	};
 
-	this.isSelector = function (selector) {
-		return checker[selector];
-	};
+		inherits(SmalltalkOrganizer, SmalltalkObject);
+		inherits(SmalltalkPackageOrganizer, SmalltalkOrganizer);
+		inherits(SmalltalkClassOrganizer, SmalltalkOrganizer);
+
+		this.__init__ = function () {
+			st.wrapClassName("Organizer", "Kernel-Infrastructure", SmalltalkOrganizer, globals.Object, false);
+			st.wrapClassName("PackageOrganizer", "Kernel-Infrastructure", SmalltalkPackageOrganizer, globals.Organizer, false);
+			st.wrapClassName("ClassOrganizer", "Kernel-Infrastructure", SmalltalkClassOrganizer, globals.Organizer, false);
+		};
 
-	/* Dnu handler method */
+		this.setupClassOrganization = function (klass) {
+			klass.organization = new SmalltalkClassOrganizer();
+			klass.organization.theClass = klass;
+		};
 
-	function createHandler(selector) {
-		return function() {
-			var args = Array.prototype.slice.call(arguments);
-			return brikz.messageSend.messageNotUnderstood(this, selector, args);
+		this.setupPackageOrganization = function (pkg) {
+			pkg.organization = new SmalltalkPackageOrganizer();
+		};
+
+		this.addOrganizationElement = function (owner, element) {
+			owner.organization.elements.addElement(element);
+		};
+
+		this.removeOrganizationElement = function (owner, element) {
+			owner.organization.elements.removeElement(element);
 		};
 	}
 
-	this.installHandlers = function (klass) {
-		for(var i=0; i<methods.length; i++) {
-			manip.installMethodIfAbsent(methods[i], klass);
-		}
-	};
-}
+	function DNUBrik(brikz, st) {
 
-function ClassInitBrik(brikz, st) {
+		brikz.ensure("selectorConversion");
+		brikz.ensure("messageSend");
+		var manip = brikz.ensure("manipulation");
+		var rootAsClass = brikz.ensure("root").rootAsClass;
 
-	var dnu = brikz.ensure("dnu");
-	var manip = brikz.ensure("manipulation");
-	var nil = brikz.ensure("root").nil;
+		/* Method not implemented handlers */
 
-	/* Initialize a class in its class hierarchy. Handle both classes and
-	metaclasses. */
+		var methods = [], checker = Object.create(null);
+		this.selectors = [];
 
-	st.init = function(klass) {
-		st.initClass(klass);
-		if(klass.klass && !klass.meta) {
-			st.initClass(klass.klass);
-		}
-	};
+		this.get = function (string) {
+			var index = this.selectors.indexOf(string);
+			if(index !== -1) {
+				return methods[index];
+			}
+			this.selectors.push(string);
+			var selector = st.selector(string);
+			checker[selector] = true;
+			var method = {jsSelector: selector, fn: createHandler(selector)};
+			methods.push(method);
+			manip.installMethod(method, rootAsClass);
+			return method;
+		};
 
-	st.initClass = function(klass) {
-		if(klass.wrapped) {
-			copySuperclass(klass);
-		}
+		this.isSelector = function (selector) {
+			return checker[selector];
+		};
 
-		if(klass.wrapped) {
-			dnu.installHandlers(klass);
+		/* Dnu handler method */
+
+		function createHandler(selector) {
+			return function() {
+				var args = Array.prototype.slice.call(arguments);
+				return brikz.messageSend.messageNotUnderstood(this, selector, args);
+			};
 		}
-	};
 
-	function copySuperclass(klass, superclass) {
-		var inheritedMethods = Object.create(null);
-		deinstallAllMethods(klass);
-		for (superclass = superclass || klass.superclass;
-			superclass && superclass !== nil;
-			superclass = superclass.superclass) {
-			for (var keys = Object.keys(superclass.methods), i = 0; i < keys.length; i++) {
-				inheritMethodIfAbsent(superclass.methods[keys[i]]);
+		this.installHandlers = function (klass) {
+			for(var i=0; i<methods.length; i++) {
+				manip.installMethodIfAbsent(methods[i], klass);
 			}
-		}
-		manip.reinstallMethods(klass);
+		};
+	}
+
+	function ClassInitBrik(brikz, st) {
 
-		function inheritMethodIfAbsent(method) {
-			var selector = method.selector;
+		var dnu = brikz.ensure("dnu");
+		var manip = brikz.ensure("manipulation");
+		var nil = brikz.ensure("root").nil;
 
-			//TODO: prepare klass methods into inheritedMethods to only test once
-			if(klass.methods[selector] || inheritedMethods[selector]) {
-				return;
+		/* Initialize a class in its class hierarchy. Handle both classes and
+		 metaclasses. */
+
+		st.init = function(klass) {
+			st.initClass(klass);
+			if(klass.klass && !klass.meta) {
+				st.initClass(klass.klass);
 			}
+		};
 
-			manip.installMethod(method, klass);
-			inheritedMethods[method.selector] = true;
-		}
+		st.initClass = function(klass) {
+			if(klass.wrapped) {
+				copySuperclass(klass);
+			}
 
-	}
+			if(klass.wrapped) {
+				dnu.installHandlers(klass);
+			}
+		};
 
-	function deinstallAllMethods(klass) {
-		var proto = klass.fn.prototype;
-		for(var keys = Object.getOwnPropertyNames(proto), i=0; i<keys.length; i++) {
-			var key = keys[i];
-			if (dnu.isSelector(key)) {
-				proto[key] = null;
+		function copySuperclass(klass, superclass) {
+			var inheritedMethods = Object.create(null);
+			deinstallAllMethods(klass);
+			for (superclass = superclass || klass.superclass;
+				 superclass && superclass !== nil;
+				 superclass = superclass.superclass) {
+				for (var keys = Object.keys(superclass.methods), i = 0; i < keys.length; i++) {
+					inheritMethodIfAbsent(superclass.methods[keys[i]]);
+				}
 			}
-		}
-	}
-}
+			manip.reinstallMethods(klass);
+
+			function inheritMethodIfAbsent(method) {
+				var selector = method.selector;
 
-function ManipulationBrik(brikz, st) {
+				//TODO: prepare klass methods into inheritedMethods to only test once
+				if(klass.methods[selector] || inheritedMethods[selector]) {
+					return;
+				}
+
+				manip.installMethod(method, klass);
+				inheritedMethods[method.selector] = true;
+			}
 
-	this.installMethodIfAbsent = function (handler, klass) {
-		if(!klass.fn.prototype[handler.jsSelector]) {
-			installMethod(handler, klass);
 		}
-	};
 
-	function installMethod (method, klass) {
-		Object.defineProperty(klass.fn.prototype, method.jsSelector, {
-			value: method.fn,
-			enumerable: false, configurable: true, writable: true
-		});
+		function deinstallAllMethods(klass) {
+			var proto = klass.fn.prototype;
+			for(var keys = Object.getOwnPropertyNames(proto), i=0; i<keys.length; i++) {
+				var key = keys[i];
+				if (dnu.isSelector(key)) {
+					proto[key] = null;
+				}
+			}
+		}
 	}
-	this.installMethod = installMethod;
 
-	this.reinstallMethods = function (klass) {
-		var methods = klass.methods;
-		for(var keys = Object.keys(methods), i=0; i<keys.length; i++) {
-			installMethod(methods[keys[i]], klass);
-		}
-	};
-}
+	function ManipulationBrik(brikz, st) {
+
+		this.installMethodIfAbsent = function (handler, klass) {
+			if(!klass.fn.prototype[handler.jsSelector]) {
+				installMethod(handler, klass);
+			}
+		};
 
-function ClassesBrik(brikz, st) {
+		function installMethod (method, klass) {
+			Object.defineProperty(klass.fn.prototype, method.jsSelector, {
+				value: method.fn,
+				enumerable: false, configurable: true, writable: true
+			});
+		}
+		this.installMethod = installMethod;
 
-	var org = brikz.ensure("organize");
-	var root = brikz.ensure("root");
-	var nil = root.nil;
-	var rootAsClass = root.rootAsClass;
-	var SmalltalkObject = root.Object;
-	rootAsClass.klass = {fn: SmalltalkClass};
+		this.reinstallMethods = function (klass) {
+			var methods = klass.methods;
+			for(var keys = Object.keys(methods), i=0; i<keys.length; i++) {
+				installMethod(methods[keys[i]], klass);
+			}
+		};
+	}
 
-	function SmalltalkPackage() {}
-	function SmalltalkBehavior() {}
-	function SmalltalkClass() {}
-	function SmalltalkMetaclass() {}
+	function ClassesBrik(brikz, st) {
 
-	inherits(SmalltalkPackage, SmalltalkObject);
-	inherits(SmalltalkBehavior, SmalltalkObject);
-	inherits(SmalltalkClass, SmalltalkBehavior);
-	inherits(SmalltalkMetaclass, SmalltalkBehavior);
+		var org = brikz.ensure("organize");
+		var root = brikz.ensure("root");
+		var nil = root.nil;
+		var rootAsClass = root.rootAsClass;
+		var SmalltalkObject = root.Object;
+		rootAsClass.klass = {fn: SmalltalkClass};
 
-	SmalltalkMetaclass.prototype.meta = true;
+		function SmalltalkPackage() {}
+		function SmalltalkBehavior() {}
+		function SmalltalkClass() {}
+		function SmalltalkMetaclass() {}
 
-	this.__init__ = function () {
-		st.addPackage("Kernel-Classes");
-		st.wrapClassName("Behavior", "Kernel-Classes", SmalltalkBehavior, globals.Object, false);
-		st.wrapClassName("Metaclass", "Kernel-Classes", SmalltalkMetaclass, globals.Behavior, false);
-		st.wrapClassName("Class", "Kernel-Classes", SmalltalkClass, globals.Behavior, false);
+		inherits(SmalltalkPackage, SmalltalkObject);
+		inherits(SmalltalkBehavior, SmalltalkObject);
+		inherits(SmalltalkClass, SmalltalkBehavior);
+		inherits(SmalltalkMetaclass, SmalltalkBehavior);
 
-		// Manually bootstrap the metaclass hierarchy
-		globals.ProtoObject.klass.superclass = rootAsClass.klass = globals.Class;
-		addSubclass(globals.ProtoObject.klass);
+		SmalltalkMetaclass.prototype.meta = true;
 
-		st.wrapClassName("Package", "Kernel-Infrastructure", SmalltalkPackage, globals.Object, false);
-	};
+		this.__init__ = function () {
+			st.addPackage("Kernel-Classes");
+			st.wrapClassName("Behavior", "Kernel-Classes", SmalltalkBehavior, globals.Object, false);
+			st.wrapClassName("Metaclass", "Kernel-Classes", SmalltalkMetaclass, globals.Behavior, false);
+			st.wrapClassName("Class", "Kernel-Classes", SmalltalkClass, globals.Behavior, false);
 
-	/* Smalltalk classes */
+			// Manually bootstrap the metaclass hierarchy
+			globals.ProtoObject.klass.superclass = rootAsClass.klass = globals.Class;
+			addSubclass(globals.ProtoObject.klass);
 
-	var classes = [];
-	var wrappedClasses = [];
+			st.wrapClassName("Package", "Kernel-Infrastructure", SmalltalkPackage, globals.Object, false);
+		};
 
-	/* We hold all Packages in a separate Object */
+		/* Smalltalk classes */
 
-	st.packages = {};
+		var classes = [];
+		var wrappedClasses = [];
 
-	/* Smalltalk package creation. To add a Package, use smalltalk.addPackage() */
+		/* We hold all Packages in a separate Object */
 
-	function pkg(spec) {
-		var that = new SmalltalkPackage();
-		that.pkgName = spec.pkgName;
-		org.setupPackageOrganization(that);
-		that.properties = spec.properties || {};
-		return that;
-	}
+		st.packages = {};
 
-	/* Smalltalk class creation. A class is an instance of an automatically
-		created metaclass object. Newly created classes (not their metaclass)
-		should be added to the smalltalk object, see smalltalk.addClass().
-		Superclass linking is *not* handled here, see smalltalk.init()  */
+		/* Smalltalk package creation. To add a Package, use smalltalk.addPackage() */
 
-	function klass(spec) {
-		spec = spec || {};
-		var setSuperClass = spec.superclass;
-		if(!spec.superclass) {
-			spec.superclass = rootAsClass;
+		function pkg(spec) {
+			var that = new SmalltalkPackage();
+			that.pkgName = spec.pkgName;
+			org.setupPackageOrganization(that);
+			that.properties = spec.properties || {};
+			return that;
 		}
 
-		var meta = metaclass(spec);
-		var that = meta.instanceClass;
+		/* Smalltalk class creation. A class is an instance of an automatically
+		 created metaclass object. Newly created classes (not their metaclass)
+		 should be added to the smalltalk object, see smalltalk.addClass().
+		 Superclass linking is *not* handled here, see smalltalk.init()  */
 
-		that.superclass = setSuperClass;
+		function klass(spec) {
+			spec = spec || {};
+			var setSuperClass = spec.superclass;
+			if(!spec.superclass) {
+				spec.superclass = rootAsClass;
+			}
 
-		that.fn = spec.fn || inherits(function () {}, spec.superclass.fn);
-		that.subclasses = [];
+			var meta = metaclass(spec);
+			var that = meta.instanceClass;
 
-		setupClass(that, spec);
+			that.superclass = setSuperClass;
 
-		that.className = spec.className;
-		that.wrapped   = spec.wrapped || false;
-		meta.className = spec.className + ' class';
-		meta.superclass = spec.superclass.klass;
-		return that;
-	}
+			that.fn = spec.fn || inherits(function () {}, spec.superclass.fn);
+			that.subclasses = [];
 
-	function metaclass(spec) {
-		spec = spec || {};
-		var that = new SmalltalkMetaclass();
-		that.fn = inherits(function () {}, spec.superclass.klass.fn);
-		that.instanceClass = new that.fn();
-		setupClass(that);
-		return that;
-	}
+			setupClass(that, spec);
 
-	SmalltalkBehavior.prototype.toString = function () {
-		return 'Smalltalk ' + this.className;
-	};
+			that.className = spec.className;
+			that.wrapped   = spec.wrapped || false;
+			meta.className = spec.className + ' class';
+			meta.superclass = spec.superclass.klass;
+			return that;
+		}
 
-	function setupClass(klass, spec) {
-		spec = spec || {};
-		klass.iVarNames = spec.iVarNames || [];
-		klass.pkg = spec.pkg;
+		function metaclass(spec) {
+			spec = spec || {};
+			var that = new SmalltalkMetaclass();
+			that.fn = inherits(function () {}, spec.superclass.klass.fn);
+			that.instanceClass = new that.fn();
+			setupClass(that);
+			return that;
+		}
 
-		org.setupClassOrganization(klass);
-		Object.defineProperty(klass, "methods", {
-			value: Object.create(null),
-			enumerable: false, configurable: true, writable: true
-		});
-		Object.defineProperty(klass.fn.prototype, "klass", {
-			value: klass,
-			enumerable: false, configurable: true, writable: true
-		});
-	}
+		SmalltalkBehavior.prototype.toString = function () {
+			return 'Smalltalk ' + this.className;
+		};
 
-	/* Add a package to the smalltalk.packages object, creating a new one if needed.
-	 If pkgName is null or empty we return nil, which is an allowed package for a class.
-	 If package already exists we still update the properties of it. */
+		function setupClass(klass, spec) {
+			spec = spec || {};
+			klass.iVarNames = spec.iVarNames || [];
+			klass.pkg = spec.pkg;
 
-	st.addPackage = function(pkgName, properties) {
-		if(!pkgName) {return nil;}
-		if(!(st.packages[pkgName])) {
-			st.packages[pkgName] = pkg({
-				pkgName: pkgName,
-				properties: properties
+			org.setupClassOrganization(klass);
+			Object.defineProperty(klass, "methods", {
+				value: Object.create(null),
+				enumerable: false, configurable: true, writable: true
+			});
+			Object.defineProperty(klass.fn.prototype, "klass", {
+				value: klass,
+				enumerable: false, configurable: true, writable: true
 			});
-		} else {
-			if(properties) {
-				st.packages[pkgName].properties = properties;
-			}
 		}
-		return st.packages[pkgName];
-	};
 
-	/* Add a class to the smalltalk object, creating a new one if needed.
-	 A Package is lazily created if it does not exist with given name. */
+		/* Add a package to the smalltalk.packages object, creating a new one if needed.
+		 If pkgName is null or empty we return nil, which is an allowed package for a class.
+		 If package already exists we still update the properties of it. */
+
+		st.addPackage = function(pkgName, properties) {
+			if(!pkgName) {return nil;}
+			if(!(st.packages[pkgName])) {
+				st.packages[pkgName] = pkg({
+					pkgName: pkgName,
+					properties: properties
+				});
+			} else {
+				if(properties) {
+					st.packages[pkgName].properties = properties;
+				}
+			}
+			return st.packages[pkgName];
+		};
 
-	st.addClass = function(className, superclass, iVarNames, pkgName) {
-		if (superclass == nil) { superclass = null; }
+		/* Add a class to the smalltalk object, creating a new one if needed.
+		 A Package is lazily created if it does not exist with given name. */
 
-		// While subclassing nil is allowed, it might be an error, so
-		// warn about it.
-		if (superclass === null) {
-			console.warn('Compiling ' + className + ' as a subclass of `nil`. A dependency might be missing.');
-		}
-		rawAddClass(pkgName, className, superclass, iVarNames, false, null);
-	};
+		st.addClass = function(className, superclass, iVarNames, pkgName) {
+			if (superclass == nil) { superclass = null; }
 
-	function rawAddClass(pkgName, className, superclass, iVarNames, wrapped, fn) {
-		var pkg = st.packages[pkgName];
+			// While subclassing nil is allowed, it might be an error, so
+			// warn about it.
+			if (superclass === null) {
+				console.warn('Compiling ' + className + ' as a subclass of `nil`. A dependency might be missing.');
+			}
+			rawAddClass(pkgName, className, superclass, iVarNames, false, null);
+		};
 
-		if (!pkg) {
-			throw new Error("Missing package "+pkgName);
-		}
+		function rawAddClass(pkgName, className, superclass, iVarNames, wrapped, fn) {
+			var pkg = st.packages[pkgName];
 
-		if(globals[className] && globals[className].superclass == superclass) {
-//            globals[className].superclass = superclass;
-			globals[className].iVarNames = iVarNames || [];
-			if (pkg) globals[className].pkg = pkg;
-			if (fn) {
-				fn.prototype = globals[className].fn.prototype;
-				globals[className].fn = fn;
-				fn.prototype.constructor = fn;
+			if (!pkg) {
+				throw new Error("Missing package "+pkgName);
 			}
-		} else {
-			if(globals[className]) {
-				st.removeClass(globals[className]);
+
+			if(globals[className] && globals[className].superclass == superclass) {
+				//            globals[className].superclass = superclass;
+				globals[className].iVarNames = iVarNames || [];
+				if (pkg) globals[className].pkg = pkg;
+				if (fn) {
+					fn.prototype = globals[className].fn.prototype;
+					globals[className].fn = fn;
+					fn.prototype.constructor = fn;
+				}
+			} else {
+				if(globals[className]) {
+					st.removeClass(globals[className]);
+				}
+				globals[className] = klass({
+					className: className,
+					superclass: superclass,
+					pkg: pkg,
+					iVarNames: iVarNames,
+					fn: fn,
+					wrapped: wrapped
+				});
+
+				addSubclass(globals[className]);
 			}
-			globals[className] = klass({
-				className: className,
-				superclass: superclass,
-				pkg: pkg,
-				iVarNames: iVarNames,
-				fn: fn,
-				wrapped: wrapped
-			});
 
-			addSubclass(globals[className]);
+			classes.addElement(globals[className]);
+			org.addOrganizationElement(pkg, globals[className]);
 		}
 
-		classes.addElement(globals[className]);
-		org.addOrganizationElement(pkg, globals[className]);
-	}
-
-	st.removeClass = function(klass) {
-		org.removeOrganizationElement(klass.pkg, klass);
-		classes.removeElement(klass);
-		removeSubclass(klass);
-		delete globals[klass.className];
-	};
+		st.removeClass = function(klass) {
+			org.removeOrganizationElement(klass.pkg, klass);
+			classes.removeElement(klass);
+			removeSubclass(klass);
+			delete globals[klass.className];
+		};
 
-	function addSubclass(klass) {
-		if(klass.superclass) {
-			klass.superclass.subclasses.addElement(klass);
+		function addSubclass(klass) {
+			if(klass.superclass) {
+				klass.superclass.subclasses.addElement(klass);
+			}
 		}
-	}
 
-	function removeSubclass(klass) {
-		if(klass.superclass) {
-			klass.superclass.subclasses.removeElement(klass);
+		function removeSubclass(klass) {
+			if(klass.superclass) {
+				klass.superclass.subclasses.removeElement(klass);
+			}
 		}
-	}
 
-	/* Create a new class wrapping a JavaScript constructor, and add it to the
-	 global smalltalk object. Package is lazily created if it does not exist with given name. */
+		/* Create a new class wrapping a JavaScript constructor, and add it to the
+		 global smalltalk object. Package is lazily created if it does not exist with given name. */
 
-	st.wrapClassName = function(className, pkgName, fn, superclass, wrapped) {
-		wrapped = wrapped !== false;
-		rawAddClass(pkgName, className, superclass, globals[className] && globals[className].iVarNames, wrapped, fn);
-		if(wrapped) {
-			wrappedClasses.addElement(globals[className]);
-		}
-	};
+		st.wrapClassName = function(className, pkgName, fn, superclass, wrapped) {
+			wrapped = wrapped !== false;
+			rawAddClass(pkgName, className, superclass, globals[className] && globals[className].iVarNames, wrapped, fn);
+			if(wrapped) {
+				wrappedClasses.addElement(globals[className]);
+			}
+		};
 
-	/* Manually set the constructor of an existing Smalltalk klass, making it a wrapped class. */
+		/* Manually set the constructor of an existing Smalltalk klass, making it a wrapped class. */
 
-	st.setClassConstructor = function(klass, constructor) {
-		wrappedClasses.addElement(klass);
-		klass.wrapped = true;
-		klass.fn = constructor;
+		st.setClassConstructor = function(klass, constructor) {
+			wrappedClasses.addElement(klass);
+			klass.wrapped = true;
+			klass.fn = constructor;
 
-		// The fn property changed. We need to add back the klass property to the prototype
-		Object.defineProperty(klass.fn.prototype, "klass", {
-			value: klass,
-			enumerable: false, configurable: true, writable: true
-		});
+			// The fn property changed. We need to add back the klass property to the prototype
+			Object.defineProperty(klass.fn.prototype, "klass", {
+				value: klass,
+				enumerable: false, configurable: true, writable: true
+			});
 
-		st.initClass(klass);
-	};
+			st.initClass(klass);
+		};
 
-	/* Create an alias for an existing class */
+		/* Create an alias for an existing class */
 
-	st.alias = function(klass, alias) {
-		globals[alias] = klass;
-	};
+		st.alias = function(klass, alias) {
+			globals[alias] = klass;
+		};
 
-	/* Answer all registered Smalltalk classes */
-	//TODO: remove the function and make smalltalk.classes an array
+		/* Answer all registered Smalltalk classes */
+		//TODO: remove the function and make smalltalk.classes an array
 
-	st.classes = function() {
-		return classes;
-	};
+		st.classes = function() {
+			return classes;
+		};
 
-	st.wrappedClasses = function() {
-		return wrappedClasses;
-	};
+		st.wrappedClasses = function() {
+			return wrappedClasses;
+		};
 
-	// Still used, but could go away now that subclasses are stored
-	// into classes directly.
-	st.allSubclasses = function(klass) {
-		return klass._allSubclasses();
-	};
+		// Still used, but could go away now that subclasses are stored
+		// into classes directly.
+		st.allSubclasses = function(klass) {
+			return klass._allSubclasses();
+		};
 
-}
+	}
 
-function MethodsBrik(brikz, st) {
+	function MethodsBrik(brikz, st) {
 
-	var manip = brikz.ensure("manipulation");
-	var org = brikz.ensure("organize");
-	var stInit = brikz.ensure("stInit");
-	var dnu = brikz.ensure("dnu");
-	var SmalltalkObject = brikz.ensure("root").Object;
-	brikz.ensure("selectorConversion");
-	brikz.ensure("classes");
-	brikz.ensure("classInit");
+		var manip = brikz.ensure("manipulation");
+		var org = brikz.ensure("organize");
+		var stInit = brikz.ensure("stInit");
+		var dnu = brikz.ensure("dnu");
+		var SmalltalkObject = brikz.ensure("root").Object;
+		brikz.ensure("selectorConversion");
+		brikz.ensure("classes");
+		brikz.ensure("classInit");
 
-	function SmalltalkMethod() {}
-	inherits(SmalltalkMethod, SmalltalkObject);
+		function SmalltalkMethod() {}
+		inherits(SmalltalkMethod, SmalltalkObject);
 
-	this.__init__ = function () {
-		st.addPackage("Kernel-Methods");
-		st.wrapClassName("CompiledMethod", "Kernel-Methods", SmalltalkMethod, globals.Object, false);
-	};
+		this.__init__ = function () {
+			st.addPackage("Kernel-Methods");
+			st.wrapClassName("CompiledMethod", "Kernel-Methods", SmalltalkMethod, globals.Object, false);
+		};
 
-	/* Smalltalk method object. To add a method to a class,
-	 use smalltalk.addMethod() */
-
-	st.method = function(spec) {
-		var that = new SmalltalkMethod();
-		that.selector          = spec.selector;
-		that.jsSelector        = spec.jsSelector;
-		that.args              = spec.args || {};
-		// spec.category is kept for compatibility
-		that.protocol          = spec.protocol || spec.category;
-		that.source            = spec.source;
-		that.messageSends      = spec.messageSends || [];
-		that.referencedClasses = spec.referencedClasses || [];
-		that.fn                = spec.fn;
-		return that;
-	};
+		/* Smalltalk method object. To add a method to a class,
+		 use smalltalk.addMethod() */
+
+		st.method = function(spec) {
+			var that = new SmalltalkMethod();
+			that.selector          = spec.selector;
+			that.jsSelector        = spec.jsSelector;
+			that.args              = spec.args || {};
+			// spec.category is kept for compatibility
+			that.protocol          = spec.protocol || spec.category;
+			that.source            = spec.source;
+			that.messageSends      = spec.messageSends || [];
+			that.referencedClasses = spec.referencedClasses || [];
+			that.fn                = spec.fn;
+			return that;
+		};
 
-	function installNewDnuHandler(newHandler) {
-		var wrappedClasses = st.wrappedClasses();
-		for(var i = 0; i < wrappedClasses.length; i++) {
-			manip.installMethodIfAbsent(newHandler, wrappedClasses[i]);
+		function installNewDnuHandler(newHandler) {
+			var wrappedClasses = st.wrappedClasses();
+			for(var i = 0; i < wrappedClasses.length; i++) {
+				manip.installMethodIfAbsent(newHandler, wrappedClasses[i]);
+			}
 		}
-	}
 
-	/* Add/remove a method to/from a class */
+		/* Add/remove a method to/from a class */
 
-	st.addMethod = function (method, klass) {
-		if (!(method.jsSelector)) {
-			method.jsSelector = st.selector(method.selector);
-		}
-		manip.installMethod(method, klass);
-		klass.methods[method.selector] = method;
-		method.methodClass = klass;
+		st.addMethod = function (method, klass) {
+			if (!(method.jsSelector)) {
+				method.jsSelector = st.selector(method.selector);
+			}
+			manip.installMethod(method, klass);
+			klass.methods[method.selector] = method;
+			method.methodClass = klass;
 
-		// During the bootstrap, #addCompiledMethod is not used.
-		// Therefore we populate the organizer here too
-		org.addOrganizationElement(klass, method.protocol);
+			// During the bootstrap, #addCompiledMethod is not used.
+			// Therefore we populate the organizer here too
+			org.addOrganizationElement(klass, method.protocol);
 
-		propagateMethodChange(klass);
+			propagateMethodChange(klass);
 
-		for(var i=0; i<method.messageSends.length; i++) {
-			var dnuHandler = dnu.get(method.messageSends[i]);
-			if(stInit.initialized()) {
-				installNewDnuHandler(dnuHandler);
+			for(var i=0; i<method.messageSends.length; i++) {
+				var dnuHandler = dnu.get(method.messageSends[i]);
+				if(stInit.initialized()) {
+					installNewDnuHandler(dnuHandler);
+				}
 			}
-		}
-	};
-
-	function propagateMethodChange(klass) {
-		// If already initialized (else it will be done later anyway),
-		// re-initialize all subclasses to ensure the method change
-		// propagation (for wrapped classes, not using the prototype
-		// chain).
+		};
 
-		//TODO: optimize, only one method need to be updated, not all of them
-		if (stInit.initialized()) {
-			st.allSubclasses(klass).forEach(function (subclass) {
-				st.initClass(subclass);
-			});
+		function propagateMethodChange(klass) {
+			// If already initialized (else it will be done later anyway),
+			// re-initialize all subclasses to ensure the method change
+			// propagation (for wrapped classes, not using the prototype
+			// chain).
+
+			//TODO: optimize, only one method need to be updated, not all of them
+			if (stInit.initialized()) {
+				st.allSubclasses(klass).forEach(function (subclass) {
+					st.initClass(subclass);
+				});
+			}
 		}
-	}
 
-	st.removeMethod = function(method, klass) {
-		if (klass !== method.methodClass) {
-			throw new Error(
-				"Refusing to remove method "
-					+ method.methodClass.className+">>"+method.selector
-					+ " from different class "
-					+ klass.className);
-		}
+		st.removeMethod = function(method, klass) {
+			if (klass !== method.methodClass) {
+				throw new Error(
+					"Refusing to remove method "
+						+ method.methodClass.className+">>"+method.selector
+						+ " from different class "
+						+ klass.className);
+			}
 
-		delete klass.fn.prototype[st.selector(method.selector)];
-		delete klass.methods[method.selector];
+			delete klass.fn.prototype[st.selector(method.selector)];
+			delete klass.methods[method.selector];
 
-		st.initClass(klass);
-		propagateMethodChange(klass);
+			st.initClass(klass);
+			propagateMethodChange(klass);
 
-		// Do *not* delete protocols from here.
-		// This is handled by #removeCompiledMethod
-	};
+			// Do *not* delete protocols from here.
+			// This is handled by #removeCompiledMethod
+		};
 
-	/* Answer all method selectors based on dnu handlers */
+		/* Answer all method selectors based on dnu handlers */
 
-	st.allSelectors = function() {
-		return dnu.selectors;
-	};
+		st.allSelectors = function() {
+			return dnu.selectors;
+		};
 
-}
+	}
 
-function AugmentsBrik(brikz, st) {
+	function AugmentsBrik(brikz, st) {
 
-	/* Make sure that console is defined */
+		/* Make sure that console is defined */
 
-	if(typeof console === "undefined") {
-		this.console = {
-			log: function() {},
-			warn: function() {},
-			info: function() {},
-			debug: function() {},
-			error: function() {}
-		};
-	}
+		if(typeof console === "undefined") {
+			this.console = {
+				log: function() {},
+				warn: function() {},
+				info: function() {},
+				debug: function() {},
+				error: function() {}
+			};
+		}
 
-	/* Array extensions */
+		/* Array extensions */
 
-	Array.prototype.addElement = function(el) {
-		if(typeof el === 'undefined') { return; }
-		if(this.indexOf(el) == -1) {
-			this.push(el);
-		}
-	};
+		Array.prototype.addElement = function(el) {
+			if(typeof el === 'undefined') { return; }
+			if(this.indexOf(el) == -1) {
+				this.push(el);
+			}
+		};
 
-	Array.prototype.removeElement = function(el) {
-		var i = this.indexOf(el);
-		if (i !== -1) { this.splice(i, 1); }
-	};
-}
+		Array.prototype.removeElement = function(el) {
+			var i = this.indexOf(el);
+			if (i !== -1) { this.splice(i, 1); }
+		};
+	}
 
-function SmalltalkInitBrik(brikz, st) {
+	function SmalltalkInitBrik(brikz, st) {
 
-	brikz.ensure("classInit");
-	brikz.ensure("classes");
-	var nil = brikz.ensure("root").nil;
+		brikz.ensure("classInit");
+		brikz.ensure("classes");
+		var nil = brikz.ensure("root").nil;
 
-	var initialized = false;
+		var initialized = false;
 
-	/* Smalltalk initialization. Called on page load */
+		/* Smalltalk initialization. Called on page load */
 
-	st.initialize = function() {
-		if(initialized) { return; }
+		st.initialize = function() {
+			if(initialized) { return; }
 
-		st.classes().forEach(function(klass) {
-			st.init(klass);
-		});
+			st.classes().forEach(function(klass) {
+				st.init(klass);
+			});
 
-		runnable();
+			runnable();
 
-		st.classes().forEach(function(klass) {
-			klass._initialize();
-		});
+			st.classes().forEach(function(klass) {
+				klass._initialize();
+			});
 
-		initialized = true;
-	};
+			initialized = true;
+		};
 
-	this.initialized = function () {
-		return initialized;
-	};
+		this.initialized = function () {
+			return initialized;
+		};
 
-	this.__init__ = function () {
-		st.addPackage("Kernel-Methods");
-		st.wrapClassName("Number", "Kernel-Objects", Number, globals.Object);
-		st.wrapClassName("BlockClosure", "Kernel-Methods", Function, globals.Object);
-		st.wrapClassName("Boolean", "Kernel-Objects", Boolean, globals.Object);
-		st.wrapClassName("Date", "Kernel-Objects", Date, globals.Object);
+		this.__init__ = function () {
+			st.addPackage("Kernel-Methods");
+			st.wrapClassName("Number", "Kernel-Objects", Number, globals.Object);
+			st.wrapClassName("BlockClosure", "Kernel-Methods", Function, globals.Object);
+			st.wrapClassName("Boolean", "Kernel-Objects", Boolean, globals.Object);
+			st.wrapClassName("Date", "Kernel-Objects", Date, globals.Object);
 
-		st.addPackage("Kernel-Collections");
-		st.addClass("Collection", globals.Object, null, "Kernel-Collections");
-		st.addClass("IndexableCollection", globals.Collection, null, "Kernel-Collections");
-		st.addClass("SequenceableCollection", globals.IndexableCollection, null, "Kernel-Collections");
-		st.addClass("CharacterArray", globals.SequenceableCollection, null, "Kernel-Collections");
-		st.wrapClassName("String", "Kernel-Collections", String, globals.CharacterArray);
-		st.wrapClassName("Array", "Kernel-Collections", Array, globals.SequenceableCollection);
-		st.wrapClassName("RegularExpression", "Kernel-Collections", RegExp, globals.Object);
+			st.addPackage("Kernel-Collections");
+			st.addClass("Collection", globals.Object, null, "Kernel-Collections");
+			st.addClass("IndexableCollection", globals.Collection, null, "Kernel-Collections");
+			st.addClass("SequenceableCollection", globals.IndexableCollection, null, "Kernel-Collections");
+			st.addClass("CharacterArray", globals.SequenceableCollection, null, "Kernel-Collections");
+			st.wrapClassName("String", "Kernel-Collections", String, globals.CharacterArray);
+			st.wrapClassName("Array", "Kernel-Collections", Array, globals.SequenceableCollection);
+			st.wrapClassName("RegularExpression", "Kernel-Collections", RegExp, globals.Object);
 
-		st.addPackage("Kernel-Exceptions");
-		st.wrapClassName("Error", "Kernel-Exceptions", Error, globals.Object);
+			st.addPackage("Kernel-Exceptions");
+			st.wrapClassName("Error", "Kernel-Exceptions", Error, globals.Object);
 
-		/* Alias definitions */
+			/* Alias definitions */
 
-		st.alias(globals.Array, "OrderedCollection");
-		st.alias(globals.Date, "Time");
+			st.alias(globals.Array, "OrderedCollection");
+			st.alias(globals.Date, "Time");
 
-	};
-}
+		};
+	}
 
-function PrimitivesBrik(brikz, st) {
+	function PrimitivesBrik(brikz, st) {
 
-	/* Unique ID number generator */
+		/* Unique ID number generator */
 
-	var oid = 0;
-	st.nextId = function() {
-		oid += 1;
-		return oid;
-	};
+		var oid = 0;
+		st.nextId = function() {
+			oid += 1;
+			return oid;
+		};
 
-	/* Converts a JavaScript object to valid Smalltalk Object */
-	st.readJSObject = function(js) {
-		var object = js;
-		var readObject = (js.constructor === Object);
-		var readArray = (js.constructor === Array);
+		/* Converts a JavaScript object to valid Smalltalk Object */
+		st.readJSObject = function(js) {
+			var object = js;
+			var readObject = (js.constructor === Object);
+			var readArray = (js.constructor === Array);
 
-		if(readObject) {
-			object = globals.Dictionary._new();
-		}
-		for(var i in js) {
 			if(readObject) {
-				object._at_put_(i, st.readJSObject(js[i]));
+				object = globals.Dictionary._new();
 			}
-			if(readArray) {
-				object[i] = st.readJSObject(js[i]);
+			for(var i in js) {
+				if(readObject) {
+					object._at_put_(i, st.readJSObject(js[i]));
+				}
+				if(readArray) {
+					object[i] = st.readJSObject(js[i]);
+				}
 			}
-		}
-		return object;
-	};
-
-	/* Boolean assertion */
-	st.assert = function(shouldBeBoolean) {
-		if (undefined !== shouldBeBoolean && shouldBeBoolean.klass === globals.Boolean) {
-			return shouldBeBoolean == true;
-		} else {
-			globals.NonBooleanReceiver._new()._object_(shouldBeBoolean)._signal();
-		}
-	};
-
-	/* List of all reserved words in JavaScript. They may not be used as variables
-	 in Smalltalk. */
-
-	// list of reserved JavaScript keywords as of
-	//   http://es5.github.com/#x7.6.1.1
-	// and
-	//   http://people.mozilla.org/~jorendorff/es6-draft.html#sec-7.6.1
-	st.reservedWords = ['break', 'case', 'catch', 'continue', 'debugger',
-		'default', 'delete', 'do', 'else', 'finally', 'for', 'function',
-		'if', 'in', 'instanceof', 'new', 'return', 'switch', 'this', 'throw',
-		'try', 'typeof', 'var', 'void', 'while', 'with',
-		// ES5: future use: http://es5.github.com/#x7.6.1.2
-		'class', 'const', 'enum', 'export', 'extends', 'import', 'super',
-		// ES5: future use in strict mode
-		'implements', 'interface', 'let', 'package', 'private', 'protected',
-		'public', 'static', 'yield'];
-
-	st.globalJsVariables = ['jQuery', 'window', 'document', 'process', 'global'];
-
-}
-
-function RuntimeBrik(brikz, st) {
-
-	brikz.ensure("selectorConversion");
-	var root = brikz.ensure("root");
-	var nil = root.nil;
-	var SmalltalkObject = root.Object;
-
-	function SmalltalkMethodContext(home, setup) {
-		this.sendIdx     = {};
-		this.homeContext = home;
-		this.setup       = setup || function() {};
-	}
+			return object;
+		};
 
-	inherits(SmalltalkMethodContext, SmalltalkObject);
-
-	this.__init__ = function () {
-		st.addPackage("Kernel-Methods");
-		st.wrapClassName("MethodContext", "Kernel-Methods", SmalltalkMethodContext, globals.Object, false);
-
-		// Fallbacks
-		SmalltalkMethodContext.prototype.locals = {};
-		SmalltalkMethodContext.prototype.receiver = null;
-		SmalltalkMethodContext.prototype.selector = null;
-		SmalltalkMethodContext.prototype.lookupClass = null;
-
-		SmalltalkMethodContext.prototype.fill = function(receiver, selector, locals, lookupClass) {
-			this.receiver    = receiver;
-			this.selector    = selector;
-			this.locals      = locals || {};
-			this.lookupClass = lookupClass;
-			if(this.homeContext) {
-				this.homeContext.evaluatedSelector = selector;
+		/* Boolean assertion */
+		st.assert = function(shouldBeBoolean) {
+			if (undefined !== shouldBeBoolean && shouldBeBoolean.klass === globals.Boolean) {
+				return shouldBeBoolean == true;
+			} else {
+				globals.NonBooleanReceiver._new()._object_(shouldBeBoolean)._signal();
 			}
 		};
 
-		SmalltalkMethodContext.prototype.fillBlock = function(locals, ctx, index) {
-			this.locals        = locals || {};
-			this.outerContext  = ctx;
-			this.index         = index || 0;
-		};
+		/* List of all reserved words in JavaScript. They may not be used as variables
+		 in Smalltalk. */
+
+		// list of reserved JavaScript keywords as of
+		//   http://es5.github.com/#x7.6.1.1
+		// and
+		//   http://people.mozilla.org/~jorendorff/es6-draft.html#sec-7.6.1
+		st.reservedWords = ['break', 'case', 'catch', 'continue', 'debugger',
+							'default', 'delete', 'do', 'else', 'finally', 'for', 'function',
+							'if', 'in', 'instanceof', 'new', 'return', 'switch', 'this', 'throw',
+							'try', 'typeof', 'var', 'void', 'while', 'with',
+							// ES5: future use: http://es5.github.com/#x7.6.1.2
+							'class', 'const', 'enum', 'export', 'extends', 'import', 'super',
+							// ES5: future use in strict mode
+							'implements', 'interface', 'let', 'package', 'private', 'protected',
+							'public', 'static', 'yield'];
+
+		st.globalJsVariables = ['jQuery', 'window', 'document', 'process', 'global'];
 
-		SmalltalkMethodContext.prototype.init = function() {
-			var home = this.homeContext;
-			if(home) {
-				home.init();
-			}
+	}
 
-			this.setup(this);
-		};
+	function RuntimeBrik(brikz, st) {
 
-		SmalltalkMethodContext.prototype.method = function() {
-			var method;
-			var lookup = this.lookupClass || this.receiver.klass;
-			while(!method && lookup) {
-				method = lookup.methods[st.convertSelector(this.selector)];
-				lookup = lookup.superclass;
-			}
-			return method;
+		brikz.ensure("selectorConversion");
+		var root = brikz.ensure("root");
+		var nil = root.nil;
+		var SmalltalkObject = root.Object;
+
+		function SmalltalkMethodContext(home, setup) {
+			this.sendIdx     = {};
+			this.homeContext = home;
+			this.setup       = setup || function() {};
+		}
+
+		inherits(SmalltalkMethodContext, SmalltalkObject);
+
+		this.__init__ = function () {
+			st.addPackage("Kernel-Methods");
+			st.wrapClassName("MethodContext", "Kernel-Methods", SmalltalkMethodContext, globals.Object, false);
+
+			// Fallbacks
+			SmalltalkMethodContext.prototype.locals = {};
+			SmalltalkMethodContext.prototype.receiver = null;
+			SmalltalkMethodContext.prototype.selector = null;
+			SmalltalkMethodContext.prototype.lookupClass = null;
+
+			SmalltalkMethodContext.prototype.fill = function(receiver, selector, locals, lookupClass) {
+				this.receiver    = receiver;
+				this.selector    = selector;
+				this.locals      = locals || {};
+				this.lookupClass = lookupClass;
+				if(this.homeContext) {
+					this.homeContext.evaluatedSelector = selector;
+				}
+			};
+
+			SmalltalkMethodContext.prototype.fillBlock = function(locals, ctx, index) {
+				this.locals        = locals || {};
+				this.outerContext  = ctx;
+				this.index         = index || 0;
+			};
+
+			SmalltalkMethodContext.prototype.init = function() {
+				var home = this.homeContext;
+				if(home) {
+					home.init();
+				}
+
+				this.setup(this);
+			};
+
+			SmalltalkMethodContext.prototype.method = function() {
+				var method;
+				var lookup = this.lookupClass || this.receiver.klass;
+				while(!method && lookup) {
+					method = lookup.methods[st.convertSelector(this.selector)];
+					lookup = lookup.superclass;
+				}
+				return method;
+			};
 		};
-	};
 
-	/* This is the current call context object. While it is publicly available,
-	 Use smalltalk.getThisContext() instead which will answer a safe copy of
-	 the current context */
+		/* This is the current call context object. While it is publicly available,
+		 Use smalltalk.getThisContext() instead which will answer a safe copy of
+		 the current context */
 
-	st.thisContext = undefined;
+		st.thisContext = undefined;
 
-	st.withContext = function(worker, setup) {
-		if(st.thisContext) {
-			return inContext(worker, setup);
-		} else {
-			try {
+		st.withContext = function(worker, setup) {
+			if(st.thisContext) {
 				return inContext(worker, setup);
-			} catch(error) {
-				handleError(error);
-				st.thisContext = null;
+			} else {
+				try {
+					return inContext(worker, setup);
+				} catch(error) {
+					handleError(error);
+					st.thisContext = null;
+				}
 			}
-		}
-	};
+		};
 
-	function inContext(worker, setup) {
-		var context = pushContext(setup);
-		var result = worker(context);
-		popContext(context);
-		return result;
-	}
+		function inContext(worker, setup) {
+			var context = pushContext(setup);
+			var result = worker(context);
+			popContext(context);
+			return result;
+		}
 
-	/* Wrap a JavaScript exception in a Smalltalk Exception. 
-
-	 In case of a RangeError, stub the stack after 100 contexts to
-	 avoid another RangeError later when the stack is manipulated. */
-	function wrappedError(error) {
-		var errorWrapper = globals.JavaScriptException._on_(error);
-		// Add the error to the context, so it is visible in the stack
-		try { errorWrapper._signal(); } catch (ex) {}
-		var context = st.getThisContext();
-		if(isRangeError(error)) {
-			stubContextStack(context);
+		/* Wrap a JavaScript exception in a Smalltalk Exception. 
+
+		 In case of a RangeError, stub the stack after 100 contexts to
+		 avoid another RangeError later when the stack is manipulated. */
+		function wrappedError(error) {
+			var errorWrapper = globals.JavaScriptException._on_(error);
+			// Add the error to the context, so it is visible in the stack
+			try { errorWrapper._signal(); } catch (ex) {}
+			var context = st.getThisContext();
+			if(isRangeError(error)) {
+				stubContextStack(context);
+			}
+			errorWrapper._context_(context);
+			return errorWrapper;
 		}
-		errorWrapper._context_(context);
-		return errorWrapper;
-	}
 
-	/* Stub the context stack after 100 contexts */
-	function stubContextStack(context) {
-		var currentContext = context;
-		var contexts = 0;
-		while(contexts < 100) {
+		/* Stub the context stack after 100 contexts */
+		function stubContextStack(context) {
+			var currentContext = context;
+			var contexts = 0;
+			while(contexts < 100) {
+				if(currentContext) {
+					currentContext = currentContext.homeContext;
+				}
+				contexts++;
+			}
 			if(currentContext) {
-				currentContext = currentContext.homeContext;
+				currentContext.homeContext = undefined;
 			}
-			contexts++;
 		}
-		if(currentContext) {
-			currentContext.homeContext = undefined;
-		}
-	}
 
-	function isRangeError(error) {
-		return error instanceof RangeError;
-	}
+		function isRangeError(error) {
+			return error instanceof RangeError;
+		}
 
 
-	/* Handles Smalltalk errors. Triggers the registered ErrorHandler
-		(See the Smalltalk class ErrorHandler and its subclasses */
+		/* Handles Smalltalk errors. Triggers the registered ErrorHandler
+		 (See the Smalltalk class ErrorHandler and its subclasses */
 
-	function handleError(error) {
-		if (!error.smalltalkError) {
-			error = wrappedError(error);
+		function handleError(error) {
+			if (!error.smalltalkError) {
+				error = wrappedError(error);
+			}
+			globals.ErrorHandler._handleError_(error);
+			// Throw the exception anyway, as we want to stop
+			// the execution to avoid infinite loops
+			// Update: do not throw the exception. It's really annoying.
+			// throw error;
 		}
-		globals.ErrorHandler._handleError_(error);
-		// Throw the exception anyway, as we want to stop
-		// the execution to avoid infinite loops
-		// Update: do not throw the exception. It's really annoying.
-		// throw error;
-	}
 
-	/* Handle thisContext pseudo variable */
+		/* Handle thisContext pseudo variable */
 
-	st.getThisContext = function() {
-		if(st.thisContext) {
-			st.thisContext.init();
-			return st.thisContext;
-		} else {
-			return nil;
+		st.getThisContext = function() {
+			if(st.thisContext) {
+				st.thisContext.init();
+				return st.thisContext;
+			} else {
+				return nil;
+			}
+		};
+
+		function pushContext(setup) {
+			return st.thisContext = new SmalltalkMethodContext(st.thisContext, setup);
 		}
-	};
 
-	function pushContext(setup) {
-		return st.thisContext = new SmalltalkMethodContext(st.thisContext, setup);
-	}
+		function popContext(context) {
+			st.thisContext = context.homeContext;
+		}
 
-	function popContext(context) {
-		st.thisContext = context.homeContext;
 	}
 
-}
+	function MessageSendBrik(brikz, st) {
+
+		brikz.ensure("selectorConversion");
+		var nil = brikz.ensure("root").nil;
 
-function MessageSendBrik(brikz, st) {
+		/* Handles unhandled errors during message sends */
+		// simply send the message and handle #dnu:
 
-	brikz.ensure("selectorConversion");
-	var nil = brikz.ensure("root").nil;
+		st.send = function(receiver, selector, args, klass) {
+			var method;
+			if(receiver === null) {
+				receiver = nil;
+			}
+			method = klass ? klass.fn.prototype[selector] : receiver.klass && receiver[selector];
+			if(method) {
+				return method.apply(receiver, args);
+			} else {
+				return messageNotUnderstood(receiver, selector, args);
+			}
+		};
 
-	/* Handles unhandled errors during message sends */
-	// simply send the message and handle #dnu:
+		/* Handles #dnu: *and* JavaScript method calls.
+		 if the receiver has no klass, we consider it a JS object (outside of the
+		 Amber system). Else assume that the receiver understands #doesNotUnderstand: */
 
-	st.send = function(receiver, selector, args, klass) {
-		var method;
-		if(receiver === null) {
-			receiver = nil;
-		}
-		method = klass ? klass.fn.prototype[selector] : receiver.klass && receiver[selector];
-		if(method) {
-			return method.apply(receiver, args);
-		} else {
-			return messageNotUnderstood(receiver, selector, args);
-		}
-	};
+		function messageNotUnderstood(receiver, selector, args) {
+			/* Handles JS method calls. */
+			if(receiver.klass === undefined || receiver.allowJavaScriptCalls) {
+				return callJavaScriptMethod(receiver, selector, args);
+			}
 
-	/* Handles #dnu: *and* JavaScript method calls.
-	 if the receiver has no klass, we consider it a JS object (outside of the
-	 Amber system). Else assume that the receiver understands #doesNotUnderstand: */
+			/* Handles not understood messages. Also see the Amber counter-part
+			 Object>>doesNotUnderstand: */
 
-	function messageNotUnderstood(receiver, selector, args) {
-		/* Handles JS method calls. */
-		if(receiver.klass === undefined || receiver.allowJavaScriptCalls) {
-			return callJavaScriptMethod(receiver, selector, args);
+			return receiver._doesNotUnderstand_(
+				globals.Message._new()
+					._selector_(st.convertSelector(selector))
+					._arguments_(args)
+			);
 		}
 
-		/* Handles not understood messages. Also see the Amber counter-part
-		 Object>>doesNotUnderstand: */
-
-		return receiver._doesNotUnderstand_(
-			globals.Message._new()
-				._selector_(st.convertSelector(selector))
-				._arguments_(args)
-		);
-	}
+		/* Call a method of a JS object, or answer a property if it exists.
+		 Else try wrapping a JSObjectProxy around the receiver.
+
+		 If the object property is a function, then call it, except if it starts with
+		 an uppercase character (we probably want to answer the function itself in this
+		 case and send it #new from Amber).
+
+		 Converts keyword-based selectors by using the first
+		 keyword only, but keeping all message arguments.
+
+		 Example:
+		 "self do: aBlock with: anObject" -> "self.do(aBlock, anObject)" */
+
+		function callJavaScriptMethod(receiver, selector, args) {
+			var jsSelector = selector._asJavaScriptSelector();
+			var jsProperty = receiver[jsSelector];
+			if(typeof jsProperty === "function" && !/^[A-Z]/.test(jsSelector)) {
+				return jsProperty.apply(receiver, args);
+			} else if(jsProperty !== undefined) {
+				if(args[0]) {
+					receiver[jsSelector] = args[0];
+					return nil;
+				} else {
+					return jsProperty;
+				}
+			}
 
-	/* Call a method of a JS object, or answer a property if it exists.
-	 Else try wrapping a JSObjectProxy around the receiver.
+			return st.send(globals.JSObjectProxy._on_(receiver), selector, args);
+		}
 
-	 If the object property is a function, then call it, except if it starts with
-	 an uppercase character (we probably want to answer the function itself in this
-	 case and send it #new from Amber).
+		this.messageNotUnderstood = messageNotUnderstood;
+	}
 
-	 Converts keyword-based selectors by using the first
-	 keyword only, but keeping all message arguments.
+	function SelectorConversionBrik(brikz, st) {
+		/* Convert a Smalltalk selector into a JS selector */
+
+		st.selector = function(string) {
+			var selector = '_' + string;
+			selector = selector.replace(/:/g, '_');
+			selector = selector.replace(/[\&]/g, '_and');
+			selector = selector.replace(/[\|]/g, '_or');
+			selector = selector.replace(/[+]/g, '_plus');
+			selector = selector.replace(/-/g, '_minus');
+			selector = selector.replace(/[*]/g ,'_star');
+			selector = selector.replace(/[\/]/g ,'_slash');
+			selector = selector.replace(/[\\]/g ,'_backslash');
+			selector = selector.replace(/[\~]/g ,'_tild');
+			selector = selector.replace(/>/g ,'_gt');
+			selector = selector.replace(/</g ,'_lt');
+			selector = selector.replace(/=/g ,'_eq');
+			selector = selector.replace(/,/g ,'_comma');
+			selector = selector.replace(/[@]/g ,'_at');
+			return selector;
+		};
 
-	 Example:
-	 "self do: aBlock with: anObject" -> "self.do(aBlock, anObject)" */
+		/* Convert a string to a valid smalltalk selector.
+		 if you modify the following functions, also change String>>asSelector
+		 accordingly */
 
-	function callJavaScriptMethod(receiver, selector, args) {
-		var jsSelector = selector._asJavaScriptSelector();
-		var jsProperty = receiver[jsSelector];
-		if(typeof jsProperty === "function" && !/^[A-Z]/.test(jsSelector)) {
-			return jsProperty.apply(receiver, args);
-		} else if(jsProperty !== undefined) {
-			if(args[0]) {
-				receiver[jsSelector] = args[0];
-				return nil;
+		st.convertSelector = function(selector) {
+			if(selector.match(/__/)) {
+				return convertBinarySelector(selector);
 			} else {
-				return jsProperty;
+				return convertKeywordSelector(selector);
 			}
-		}
-
-		return st.send(globals.JSObjectProxy._on_(receiver), selector, args);
-	}
-
-	this.messageNotUnderstood = messageNotUnderstood;
-}
-
-function SelectorConversionBrik(brikz, st) {
-	/* Convert a Smalltalk selector into a JS selector */
-
-	st.selector = function(string) {
-		var selector = '_' + string;
-		selector = selector.replace(/:/g, '_');
-		selector = selector.replace(/[\&]/g, '_and');
-		selector = selector.replace(/[\|]/g, '_or');
-		selector = selector.replace(/[+]/g, '_plus');
-		selector = selector.replace(/-/g, '_minus');
-		selector = selector.replace(/[*]/g ,'_star');
-		selector = selector.replace(/[\/]/g ,'_slash');
-		selector = selector.replace(/[\\]/g ,'_backslash');
-		selector = selector.replace(/[\~]/g ,'_tild');
-		selector = selector.replace(/>/g ,'_gt');
-		selector = selector.replace(/</g ,'_lt');
-		selector = selector.replace(/=/g ,'_eq');
-		selector = selector.replace(/,/g ,'_comma');
-		selector = selector.replace(/[@]/g ,'_at');
-		return selector;
-	};
-
-	/* Convert a string to a valid smalltalk selector.
-		if you modify the following functions, also change String>>asSelector
-		accordingly */
+		};
 
-	st.convertSelector = function(selector) {
-		if(selector.match(/__/)) {
-			return convertBinarySelector(selector);
-		} else {
-			return convertKeywordSelector(selector);
+		function convertKeywordSelector(selector) {
+			return selector.replace(/^_/, '').replace(/_/g, ':');
 		}
-	};
 
-	function convertKeywordSelector(selector) {
-		return selector.replace(/^_/, '').replace(/_/g, ':');
+		function convertBinarySelector(selector) {
+			return selector
+				.replace(/^_/, '')
+				.replace(/_and/g, '&')
+				.replace(/_or/g, '|')
+				.replace(/_plus/g, '+')
+				.replace(/_minus/g, '-')
+				.replace(/_star/g, '*')
+				.replace(/_slash/g, '/')
+				.replace(/_backslash/g, '\\')
+				.replace(/_tild/g, '~')
+				.replace(/_gt/g, '>')
+				.replace(/_lt/g, '<')
+				.replace(/_eq/g, '=')
+				.replace(/_comma/g, ',')
+				.replace(/_at/g, '@');
+		}
 	}
 
-	function convertBinarySelector(selector) {
-		return selector
-			.replace(/^_/, '')
-			.replace(/_and/g, '&')
-			.replace(/_or/g, '|')
-			.replace(/_plus/g, '+')
-			.replace(/_minus/g, '-')
-			.replace(/_star/g, '*')
-			.replace(/_slash/g, '/')
-			.replace(/_backslash/g, '\\')
-			.replace(/_tild/g, '~')
-			.replace(/_gt/g, '>')
-			.replace(/_lt/g, '<')
-			.replace(/_eq/g, '=')
-			.replace(/_comma/g, ',')
-			.replace(/_at/g, '@');
+	/* Adds AMD and requirejs related methods to the smalltalk object */
+	function AMDBrik(brikz, st) {
+		this.__init__ = function () {
+			st.amdRequire = st.amdRequire || null;
+			st.defaultTransportType = st.defaultTransportType || "amd";
+			st.defaultAmdNamespace = st.defaultAmdNamespace || "amber_core";
+		};
 	}
-}
-
-/* Adds AMD and requirejs related methods to the smalltalk object */
-function AMDBrik(brikz, st) {
-	this.__init__ = function () {
-		st.amdRequire = st.amdRequire || null;
-		st.defaultTransportType = st.defaultTransportType || "amd";
-		st.defaultAmdNamespace = st.defaultAmdNamespace || "amber_core";
-	};
-}
 
 
-/* Making smalltalk that can load */
+	/* Making smalltalk that can load */
 
-brikz.root = RootBrik;
-brikz.dnu = DNUBrik;
-brikz.organize = OrganizeBrik;
-brikz.selectorConversion = SelectorConversionBrik;
-brikz.classInit = ClassInitBrik;
-brikz.manipulation = ManipulationBrik;
-brikz.classes = ClassesBrik;
-brikz.methods = MethodsBrik;
-brikz.stInit = SmalltalkInitBrik;
-brikz.augments = AugmentsBrik;
-brikz.amdBrik = AMDBrik;
+	brikz.root = RootBrik;
+	brikz.dnu = DNUBrik;
+	brikz.organize = OrganizeBrik;
+	brikz.selectorConversion = SelectorConversionBrik;
+	brikz.classInit = ClassInitBrik;
+	brikz.manipulation = ManipulationBrik;
+	brikz.classes = ClassesBrik;
+	brikz.methods = MethodsBrik;
+	brikz.stInit = SmalltalkInitBrik;
+	brikz.augments = AugmentsBrik;
+	brikz.amdBrik = AMDBrik;
 
-brikz.rebuild();
+	brikz.rebuild();
 
-/* Making smalltalk that can run */
+	/* Making smalltalk that can run */
 
-function runnable () {
-	brikz.messageSend = MessageSendBrik;
-	brikz.runtime = RuntimeBrik;
-	brikz.primitives = PrimitivesBrik;
+	function runnable () {
+		brikz.messageSend = MessageSendBrik;
+		brikz.runtime = RuntimeBrik;
+		brikz.primitives = PrimitivesBrik;
 
-	brikz.rebuild();
-};
+		brikz.rebuild();
+	};
 
-return { smalltalk: api, nil: brikz.root.nil, globals: globals };
+	return { smalltalk: api, nil: brikz.root.nil, globals: globals };
 });