Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(610)

Unified Diff: lib/runtime/dart/_interceptors.js

Issue 1122133003: fixes #157, renaming local library identifiers if needed. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: rebase and format Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/runtime/dart/_foreign_helper.js ('k') | lib/runtime/dart/_internal.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_interceptors.js
diff --git a/lib/runtime/dart/_interceptors.js b/lib/runtime/dart/_interceptors.js
index 6ebafabd39c0d05a7371d866dd43a0a09020eb54..9ad20c6c70db310f4e6d45cd15d4f1c6efb39088 100644
--- a/lib/runtime/dart/_interceptors.js
+++ b/lib/runtime/dart/_interceptors.js
@@ -1,5 +1,10 @@
-var _interceptors;
-(function(exports) {
+var _interceptors = dart.defineLibrary(_interceptors, {});
+var core = dart.import(core);
+var _js_helper = dart.lazyImport(_js_helper);
+var _internal = dart.import(_internal);
+var _foreign_helper = dart.import(_foreign_helper);
+var _js_embedded_names = dart.import(_js_embedded_names);
+(function(exports, core, _js_helper, _internal, _foreign_helper, _js_embedded_names) {
'use strict';
let JSArray = Array;
let JSMutableArray$ = dart.generic(function(E) {
@@ -1086,4 +1091,4 @@ var _interceptors;
exports.JavaScriptObject = JavaScriptObject;
exports.PlainJavaScriptObject = PlainJavaScriptObject;
exports.UnknownJavaScriptObject = UnknownJavaScriptObject;
-})(_interceptors || (_interceptors = {}));
+})(_interceptors, core, _js_helper, _internal, _foreign_helper, _js_embedded_names);
« no previous file with comments | « lib/runtime/dart/_foreign_helper.js ('k') | lib/runtime/dart/_internal.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698