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

Unified Diff: tests/language/method_override3_test.dart

Issue 18600007: Relax method override restrictions. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Test and status updates. Created 7 years, 6 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/method_override3_test.dart
diff --git a/tests/language/method_override3_test.dart b/tests/language/method_override3_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..d5709c3784117daa7d80f6c3a85f0817ef661421
--- /dev/null
+++ b/tests/language/method_override3_test.dart
@@ -0,0 +1,28 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+import 'package:expect/expect.dart';
+
+class A {
+ foo(required1, { named1: 499}) => -(required1 + named1 * 3);
+ bar(required1, required2, { named1: 13, named2: 17})
+ => -(required1 + required2 * 3 + named1 * 5 + named2 * 7);
+ gee({named1: 31}) => -named1;
+}
+
+class B extends A {
+ foo(required1) => required1;
+ bar(required1, required2, { named1: 29 })
+ => required1 + required2 * 3 + named1 * 5;
+ gee({named2: 11}) => named2 * 99;
+}
+
+main() {
+ var b = new B();
+ Expect.equals(499, b.foo(499));
+ Expect.equals(1 + 3 * 3 + 5 * 5, b.bar(1, 3, named1: 5));
+ Expect.equals(1 + 3 * 3 + 29 * 5, b.bar(1, 3));
+ Expect.equals(3 * 99, b.gee(named2: 3));
+ Expect.equals(11 * 99, b.gee());
+}

Powered by Google App Engine
This is Rietveld 408576698