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

Unified Diff: frog/world.dart

Issue 9422019: isolates refactor: this change introduces 'dart:isolate' as a library. This is a (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: '' Created 8 years, 10 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
« no previous file with comments | « frog/reader.dart ('k') | lib/isolate/frog/compiler_hooks.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/world.dart
diff --git a/frog/world.dart b/frog/world.dart
index e0498737fb515ba42ff4379a0fe1f4ee30dba3df..1717dfc9f4f315c3e9e60c6fc65c571a3215d7e6 100644
--- a/frog/world.dart
+++ b/frog/world.dart
@@ -104,6 +104,7 @@ class World {
// TODO(jmesserly): we shouldn't be special casing DOM anywhere.
Library dom;
+ Library isolatelib;
List<Library> _todo;
@@ -460,6 +461,8 @@ class World {
if (filename == 'dart:dom') {
dom = library;
+ } else if (filename == 'dart:isolate') {
+ isolatelib = library;
}
}
return library;
« no previous file with comments | « frog/reader.dart ('k') | lib/isolate/frog/compiler_hooks.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698