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

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

Issue 1170813008: fixes detection of SDK libraries (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: format 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 dart.library('dart/async', null, /* Imports */[ 1 dart.library('dart/async', null, /* Imports */[
2 'dart/core', 2 'dart/core',
3 'dart/_internal', 3 'dart/_internal',
4 'dart/_js_helper',
5 'dart/collection' 4 'dart/collection'
6 ], /* Lazy imports */[ 5 ], /* Lazy imports */[
7 'dart/_isolate_helper' 6 'dart/_isolate_helper',
8 ], function(exports, core, _internal, _js_helper, collection, _isolate_helper) { 7 'dart/_js_helper'
8 ], function(exports, core, _internal, collection, _isolate_helper, _js_helper) {
9 'use strict'; 9 'use strict';
10 function _invokeErrorHandler(errorHandler, error, stackTrace) { 10 function _invokeErrorHandler(errorHandler, error, stackTrace) {
11 if (dart.is(errorHandler, ZoneBinaryCallback)) { 11 if (dart.is(errorHandler, ZoneBinaryCallback)) {
12 return dart.dcall(errorHandler, error, stackTrace); 12 return dart.dcall(errorHandler, error, stackTrace);
13 } else { 13 } else {
14 return dart.dcall(errorHandler, error); 14 return dart.dcall(errorHandler, error);
15 } 15 }
16 } 16 }
17 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]);
18 function _registerErrorHandler(errorHandler, zone) { 18 function _registerErrorHandler(errorHandler, zone) {
(...skipping 5883 matching lines...) Expand 10 before | Expand all | Expand 10 after
5902 exports.ScheduleMicrotaskHandler = ScheduleMicrotaskHandler; 5902 exports.ScheduleMicrotaskHandler = ScheduleMicrotaskHandler;
5903 exports.CreateTimerHandler = CreateTimerHandler; 5903 exports.CreateTimerHandler = CreateTimerHandler;
5904 exports.CreatePeriodicTimerHandler = CreatePeriodicTimerHandler; 5904 exports.CreatePeriodicTimerHandler = CreatePeriodicTimerHandler;
5905 exports.PrintHandler = PrintHandler; 5905 exports.PrintHandler = PrintHandler;
5906 exports.ForkHandler = ForkHandler; 5906 exports.ForkHandler = ForkHandler;
5907 exports.ZoneSpecification = ZoneSpecification; 5907 exports.ZoneSpecification = ZoneSpecification;
5908 exports.ZoneDelegate = ZoneDelegate; 5908 exports.ZoneDelegate = ZoneDelegate;
5909 exports.Zone = Zone; 5909 exports.Zone = Zone;
5910 exports.runZoned = runZoned; 5910 exports.runZoned = runZoned;
5911 }); 5911 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698