Browse Source

Cosmetics.

Herbert Vojčík 7 years ago
parent
commit
2194017be3
1 changed files with 2 additions and 3 deletions
  1. 2 3
      support/boot.js

+ 2 - 3
support/boot.js

@@ -71,14 +71,14 @@ define(['require', './brikz', './compatibility'], function (require, Brikz) {
         function SmalltalkProtoObject() {
         }
 
-        inherits(SmalltalkProtoObject, SmalltalkRoot);
         function SmalltalkObject() {
         }
 
-        inherits(SmalltalkObject, SmalltalkProtoObject);
         function SmalltalkNil() {
         }
 
+        inherits(SmalltalkProtoObject, SmalltalkRoot);
+        inherits(SmalltalkObject, SmalltalkProtoObject);
         inherits(SmalltalkNil, SmalltalkObject);
 
         this.Object = SmalltalkObject;
@@ -651,7 +651,6 @@ define(['require', './brikz', './compatibility'], function (require, Brikz) {
     /* (logically it belongs more to PrimitiveBrik) */
     AsReceiverBrik.deps = ["smalltalkGlobals", "root"];
     function AsReceiverBrik(brikz, st) {
-
         var globals = brikz.smalltalkGlobals.globals;
         var nil = brikz.root.nil;