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

Side by Side Diff: lib/runtime/dart/async.js

Issue 1145243013: Check for duplicate library names (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 6 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 unified diff | Download patch
OLDNEW
1 var async = dart.defineLibrary(async, {}); 1 dart.defineLibrary('async');
2 var core = dart.import(core); 2 dart.import('core');
3 var _internal = dart.import(_internal); 3 dart.import('_internal');
4 var _js_helper = dart.lazyImport(_js_helper); 4 dart.lazyImport('_js_helper');
5 var _isolate_helper = dart.lazyImport(_isolate_helper); 5 dart.lazyImport('_isolate_helper');
6 var collection = dart.import(collection); 6 dart.import('collection');
7 (function(exports, core, _internal, _js_helper, _isolate_helper, collection) { 7 (function(exports, core, _internal, _js_helper, _isolate_helper, collection) {
8 'use strict'; 8 'use strict';
9 function _invokeErrorHandler(errorHandler, error, stackTrace) { 9 function _invokeErrorHandler(errorHandler, error, stackTrace) {
10 if (dart.is(errorHandler, ZoneBinaryCallback)) { 10 if (dart.is(errorHandler, ZoneBinaryCallback)) {
11 return dart.dcall(errorHandler, error, stackTrace); 11 return dart.dcall(errorHandler, error, stackTrace);
12 } else { 12 } else {
13 return dart.dcall(errorHandler, error); 13 return dart.dcall(errorHandler, error);
14 } 14 }
15 } 15 }
16 dart.fn(_invokeErrorHandler, core.Object, [core.Function, core.Object, core.St ackTrace]); 16 dart.fn(_invokeErrorHandler, core.Object, [core.Function, core.Object, core.St ackTrace]);
(...skipping 5884 matching lines...) Expand 10 before | Expand all | Expand 10 after
5901 exports.ScheduleMicrotaskHandler = ScheduleMicrotaskHandler; 5901 exports.ScheduleMicrotaskHandler = ScheduleMicrotaskHandler;
5902 exports.CreateTimerHandler = CreateTimerHandler; 5902 exports.CreateTimerHandler = CreateTimerHandler;
5903 exports.CreatePeriodicTimerHandler = CreatePeriodicTimerHandler; 5903 exports.CreatePeriodicTimerHandler = CreatePeriodicTimerHandler;
5904 exports.PrintHandler = PrintHandler; 5904 exports.PrintHandler = PrintHandler;
5905 exports.ForkHandler = ForkHandler; 5905 exports.ForkHandler = ForkHandler;
5906 exports.ZoneSpecification = ZoneSpecification; 5906 exports.ZoneSpecification = ZoneSpecification;
5907 exports.ZoneDelegate = ZoneDelegate; 5907 exports.ZoneDelegate = ZoneDelegate;
5908 exports.Zone = Zone; 5908 exports.Zone = Zone;
5909 exports.runZoned = runZoned; 5909 exports.runZoned = runZoned;
5910 })(async, core, _internal, _js_helper, _isolate_helper, collection); 5910 })(async, core, _internal, _js_helper, _isolate_helper, collection);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698