Herbert Vojčík 7 rokov pred
rodič
commit
2194017be3
1 zmenil súbory, kde vykonal 2 pridanie a 3 odobranie
  1. 2 3
      support/boot.js

+ 2 - 3
support/boot.js

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