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

Unified Diff: frog/world.dart

Issue 10264021: Fix codegen and isolate issues for frog dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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/value.dart ('k') | lib/isolate/frog/natives.js » ('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 f7821a9fbc2735426c6422e137572ad63a38071c..9fe662c75ca3ab722f9a9e0ec1b487b6a3371254 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 html;
Library isolatelib;
List<Library> _todo;
@@ -472,6 +473,8 @@ class World {
if (filename == 'dart:dom') {
dom = library;
+ } else if (filename == 'dart:html') {
+ html = library;
} else if (filename == 'dart:isolate') {
isolatelib = library;
}
« no previous file with comments | « frog/value.dart ('k') | lib/isolate/frog/natives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698