Make moduleMerge a global function - this saves a total of 83 requires upon application loading.

This commit is contained in:
atanasovg
2015-07-27 13:04:48 +03:00
parent b3a14b55a1
commit 1439313e7b
83 changed files with 108 additions and 247 deletions

View File

@@ -6,7 +6,7 @@ import styleScope = require("ui/styling/style-scope");
import observable = require("data/observable");
var events = new observable.Observable();
require("utils/module-merge").merge(events, exports);
global.moduleMerge(events, exports);
export var launchEvent = "launch";
export var suspendEvent = "suspend";

View File

@@ -4,9 +4,7 @@ import frame = require("ui/frame");
import types = require("utils/types");
import observable = require("data/observable");
// merge the exports of the application_common file with the exports of this file
declare var exports;
require("utils/module-merge").merge(appModule, exports);
global.moduleMerge(appModule, exports);
export var mainModule: string;

View File

@@ -5,9 +5,7 @@ import types = require("utils/types");
import view = require("ui/core/view");
import definition = require("application");
// merge the exports of the application_common file with the exports of this file
declare var exports;
require("utils/module-merge").merge(appModule, exports);
global.moduleMerge(appModule, exports);
export var mainModule: string;