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

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: Address comments 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
« no previous file with comments | « lib/runtime/dart/_native_typed_data.js ('k') | lib/runtime/dart/collection.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 var async = dart.defineLibrary(async, {}); 1 dart.library('dart/async', null, /* Imports */[
2 var core = dart.import(core); 2 'dart/core',
3 var _internal = dart.import(_internal); 3 'dart/_internal',
4 var _isolate_helper = dart.lazyImport(_isolate_helper); 4 'dart/_js_helper',
5 var _js_helper = dart.import(_js_helper); 5 'dart/collection'
6 var collection = dart.import(collection); 6 ], /* Lazy imports */[
7 (function(exports, core, _internal, _isolate_helper, _js_helper, collection) { 7 'dart/_isolate_helper'
8 ], function(exports, core, _internal, _js_helper, collection, _isolate_helper) {
8 'use strict'; 9 'use strict';
9 function _invokeErrorHandler(errorHandler, error, stackTrace) { 10 function _invokeErrorHandler(errorHandler, error, stackTrace) {
10 if (dart.is(errorHandler, ZoneBinaryCallback)) { 11 if (dart.is(errorHandler, ZoneBinaryCallback)) {
11 return dart.dcall(errorHandler, error, stackTrace); 12 return dart.dcall(errorHandler, error, stackTrace);
12 } else { 13 } else {
13 return dart.dcall(errorHandler, error); 14 return dart.dcall(errorHandler, error);
14 } 15 }
15 } 16 }
16 dart.fn(_invokeErrorHandler, core.Object, [core.Function, core.Object, core.St ackTrace]); 17 dart.fn(_invokeErrorHandler, core.Object, [core.Function, core.Object, core.St ackTrace]);
17 function _registerErrorHandler(errorHandler, zone) { 18 function _registerErrorHandler(errorHandler, zone) {
(...skipping 5881 matching lines...) Expand 10 before | Expand all | Expand 10 after
5899 exports.ErrorCallbackHandler = ErrorCallbackHandler; 5900 exports.ErrorCallbackHandler = ErrorCallbackHandler;
5900 exports.ScheduleMicrotaskHandler = ScheduleMicrotaskHandler; 5901 exports.ScheduleMicrotaskHandler = ScheduleMicrotaskHandler;
5901 exports.CreateTimerHandler = CreateTimerHandler; 5902 exports.CreateTimerHandler = CreateTimerHandler;
5902 exports.CreatePeriodicTimerHandler = CreatePeriodicTimerHandler; 5903 exports.CreatePeriodicTimerHandler = CreatePeriodicTimerHandler;
5903 exports.PrintHandler = PrintHandler; 5904 exports.PrintHandler = PrintHandler;
5904 exports.ForkHandler = ForkHandler; 5905 exports.ForkHandler = ForkHandler;
5905 exports.ZoneSpecification = ZoneSpecification; 5906 exports.ZoneSpecification = ZoneSpecification;
5906 exports.ZoneDelegate = ZoneDelegate; 5907 exports.ZoneDelegate = ZoneDelegate;
5907 exports.Zone = Zone; 5908 exports.Zone = Zone;
5908 exports.runZoned = runZoned; 5909 exports.runZoned = runZoned;
5909 })(async, core, _internal, _isolate_helper, _js_helper, collection); 5910 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/_native_typed_data.js ('k') | lib/runtime/dart/collection.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698