Browse Source

Exports of `boot.js` are called `vm`, `nil` and `globals`.

Herbert Vojčík 10 years ago
parent
commit
238e6daba7
2 changed files with 2 additions and 2 deletions
  1. 1 1
      support/boot.js
  2. 1 1
      support/smalltalk.js

+ 1 - 1
support/boot.js

@@ -1129,5 +1129,5 @@ define("amber_vm/boot", [ 'require', './browser-compatibility' ], function (requ
 		brikz.rebuild();
 	};
 
-	return { smalltalk: api, nil: brikz.root.nil, globals: globals };
+	return { vm: api, nil: brikz.root.nil, globals: globals };
 });

+ 1 - 1
support/smalltalk.js

@@ -1,4 +1,4 @@
 define("amber_vm/smalltalk", ["./boot"], function (boot) {
-    return boot.smalltalk;
+    return boot.vm;
 });