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

Unified Diff: test/common.dart

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: update pubspec/changelog Created 5 years, 2 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: test/common.dart
diff --git a/test/common.dart b/test/common.dart
index 4d9a90fe324ef4d6fa5164299827c2249c211697..992be0c9d71de7281a3196912958db73bf1a2bb9 100644
--- a/test/common.dart
+++ b/test/common.dart
@@ -15,6 +15,8 @@ class Point {
num x;
num y;
+ Point(this.x, this.y);
+
Point.fromJsObject(JsObject object)
: x = object['x'],
y = object['y'];
@@ -160,3 +162,4 @@ Future requestAnimationFrame() {
}
List keysOf(JsObject object) => context['Object'].callMethod('keys', [object]);
+

Powered by Google App Engine
This is Rietveld 408576698