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

Unified Diff: tests/language/src/ThirdTest.dart

Issue 8431016: fix some tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 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: tests/language/src/ThirdTest.dart
diff --git a/tests/language/src/ThirdTest.dart b/tests/language/src/ThirdTest.dart
index 1e86feeacb675f85f0ae2bece4abd6831c63c33b..bf05473988ef7435555ed353a1ea8ad1bed299fc 100644
--- a/tests/language/src/ThirdTest.dart
+++ b/tests/language/src/ThirdTest.dart
@@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.
// Third dart test program.
-class A extends B {
+class A {
jimhug 2011/10/31 23:36:31 This appeared totally broken to me according to th
ngeoffray 2011/11/01 08:17:34 Agree about the negative test. And it's great that
var a;
static var s;
@@ -11,10 +11,10 @@ class A extends B {
return s;
}
- A(x, y) : super(y), a = x { }
+ A(x, y) : a = x + y + 1 { }
value() {
- return a + b + foo();
+ return a + foo();
}
}

Powered by Google App Engine
This is Rietveld 408576698