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

Unified Diff: test/codegen/sunflower/sunflower.dart

Issue 1879373004: Implement modular compilation (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 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 | « test/codegen/sunflower/painter.dart ('k') | test/codegen/sunflower/sunflower.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/sunflower/sunflower.dart
diff --git a/test/codegen/sunflower/sunflower.dart b/test/codegen/sunflower/sunflower.dart
index baec7b86d7a219c0c378d8e239c566014102387c..5f7894608dbca47bac5b13184ab03ec647f5115f 100644
--- a/test/codegen/sunflower/sunflower.dart
+++ b/test/codegen/sunflower/sunflower.dart
@@ -4,10 +4,10 @@
library sunflower;
+import 'dart:html';
import 'dart:math';
import 'circle.dart';
-import 'dom.dart';
import 'painter.dart';
const SEED_RADIUS = 2;
@@ -41,7 +41,7 @@ void draw() {
final y = centerY - r * sin(theta);
new SunflowerSeed(x, y, SEED_RADIUS).draw(context);
}
- notes.textContent = "$seeds seeds";
+ notes.text = "$seeds seeds";
}
// This example was modified to use classes and mixins.
@@ -51,5 +51,3 @@ class SunflowerSeed extends Circle with CirclePainter {
if (color != null) this.color = color;
}
}
-
-
« no previous file with comments | « test/codegen/sunflower/painter.dart ('k') | test/codegen/sunflower/sunflower.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698