2
0
Kaynağa Gözat

Add "TODO remove" where 'compatibility' loads.

Herbert Vojčík 7 yıl önce
ebeveyn
işleme
7fff3996ec

+ 1 - 1
support/boot.js

@@ -40,7 +40,7 @@
 //jshint eqnull:true
 
 define([
-    'require', './brikz', './kernel-fundamentals', './kernel-language', './compatibility'
+    'require', './brikz', './kernel-fundamentals', './kernel-language', './compatibility' /* TODO remove */
 ], function (require, Brikz, configureWithFundamentals, configureWithHierarchy) {
     "use strict";
 

+ 1 - 1
support/deploy.js

@@ -1,6 +1,6 @@
 define([
     './helpers',
-    './compatibility', // pre-fetch, dep of ./boot
+    './compatibility', // pre-fetch, dep of ./boot, TODO remove
     './kernel-fundamentals', // pre-fetch, dep of ./boot
     './kernel-language', // pre-fetch, dep of ./boot
     './boot', // pre-fetch, dep of ./helpers

+ 1 - 1
support/devel.js

@@ -1,6 +1,6 @@
 define([
     './lang',
-    './compatibility', // pre-fetch, dep of ./boot
+    './compatibility', // pre-fetch, dep of ./boot, TODO remove
     './kernel-fundamentals', // pre-fetch, dep of ./boot
     './kernel-language', // pre-fetch, dep of ./boot
     './boot', // pre-fetch, dep of ./helpers

+ 1 - 1
support/kernel-fundamentals.js

@@ -39,7 +39,7 @@
 
 //jshint eqnull:true
 
-define(['./compatibility'], function () {
+define(['./compatibility' /* TODO remove */], function () {
     "use strict";
 
     function inherits (child, parent) {

+ 1 - 1
support/kernel-language.js

@@ -39,7 +39,7 @@
 
 //jshint eqnull:true
 
-define(['./compatibility'], function () {
+define(['./compatibility' /* TODO remove */], function () {
     "use strict";
 
     function inherits (child, parent) {

+ 1 - 1
support/lang.js

@@ -1,6 +1,6 @@
 define([
     './deploy',
-    './compatibility', // pre-fetch, dep of ./boot
+    './compatibility', // pre-fetch, dep of ./boot, TODO remove
     './boot', // pre-fetch, dep of ./helpers
     './helpers', // pre-fetch, dep of ./deploy
     './parser',