소스 검색

Globals removed (they are exported module locals now).

Herbert Vojčík 11 년 전
부모
커밋
90404cb092
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      js/boot.js

+ 3 - 3
js/boot.js

@@ -33,12 +33,12 @@
    |
    ==================================================================== */
 
-// TODO make this unnecessary
-/* Global Smalltalk objects. */
-var global_smalltalk, global_nil, global__st;
 
 define([ 'ensure-console', 'es5-shim-2.0.2/es5-shim.min', 'es5-shim-2.0.2/es5-sham.min' ], function () {
 
+/* Previouslu global Smalltalk objects; now they are local to this module and exported. */
+var global_smalltalk, global_nil, global__st;
+
 /* Array extensions */
 
 Array.prototype.addElement = function(el) {