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

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

Issue 9317092: Revert tests to their original form, these were missed out in an earlier CL. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 11 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 | « tests/language/src/Library2NegativeTest.dart ('k') | tests/language/src/libraryE.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/src/ThirdTest.dart
===================================================================
--- tests/language/src/ThirdTest.dart (revision 3918)
+++ tests/language/src/ThirdTest.dart (working copy)
@@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.
// Third dart test program.
-class A {
+class A extends B {
var a;
static var s;
@@ -11,10 +11,10 @@
return s;
}
- A(x, y) : a = x + y + 1 { }
+ A(x, y) : super(y), a = x { }
value() {
- return a + foo();
+ return a + b + foo();
}
}
« no previous file with comments | « tests/language/src/Library2NegativeTest.dart ('k') | tests/language/src/libraryE.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698