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

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

Issue 1182653002: Refactor runtime into libraries, better type reps (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Eliminate top level libraries from loader 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/isolate.js
diff --git a/lib/runtime/dart/isolate.js b/lib/runtime/dart/isolate.js
index e6ba40285cda72d4a80e290d0d2bb456d5cf09bc..33e955b414af1bbe50fd798b369302255f8a459b 100644
--- a/lib/runtime/dart/isolate.js
+++ b/lib/runtime/dart/isolate.js
@@ -1,9 +1,11 @@
-dart.library('dart/isolate', null, /* Imports */[
+loader.library('dart/isolate', null, /* Imports */[
+ "dart/dart_runtime",
+ "dart/dartx",
'dart/core',
'dart/async'
], /* Lazy imports */[
'dart/_isolate_helper'
-], function(exports, core, async, _isolate_helper) {
+], function(exports, dart, dartx, core, async, _isolate_helper) {
'use strict';
class Capability extends core.Object {
static new() {

Powered by Google App Engine
This is Rietveld 408576698