Chromium Code Reviews| 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]); |
| + |