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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: lib/runtime/dart/async.js
diff --git a/lib/runtime/dart/async.js b/lib/runtime/dart/async.js
index 7c4bcfe498df6941dc2cdb091424c531feb36c1c..76455f144e7ef96da9b3500c773e6208a97aab45 100644
--- a/lib/runtime/dart/async.js
+++ b/lib/runtime/dart/async.js
@@ -1,11 +1,11 @@
dart.library('dart/async', null, /* Imports */[
'dart/core',
'dart/_internal',
- 'dart/_js_helper',
'dart/collection'
], /* Lazy imports */[
- 'dart/_isolate_helper'
-], function(exports, core, _internal, _js_helper, collection, _isolate_helper) {
+ 'dart/_isolate_helper',
+ 'dart/_js_helper'
+], function(exports, core, _internal, collection, _isolate_helper, _js_helper) {
'use strict';
function _invokeErrorHandler(errorHandler, error, stackTrace) {
if (dart.is(errorHandler, ZoneBinaryCallback)) {

Powered by Google App Engine
This is Rietveld 408576698