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

Unified Diff: tests/language/super_call4_test.dart

Issue 11231074: Change signature of noSuchMethod to take an InvocationMirror. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: One more test expectation Created 8 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
« no previous file with comments | « tests/language/overridden_no_such_method.dart ('k') | tests/utils/dummy_compiler_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/super_call4_test.dart
diff --git a/tests/language/super_call4_test.dart b/tests/language/super_call4_test.dart
index f353f484f6ad974b873fe7e25b9445493fadddad..f5ce7c28b590d3b972c138115879fd9355bb6c54 100644
--- a/tests/language/super_call4_test.dart
+++ b/tests/language/super_call4_test.dart
@@ -6,15 +6,13 @@
// current class.
class C {
- // bool noSuchMethod(InvocationMirror im) { // Issue 3622
- bool noSuchMethod(String function_name, List args) {
+ bool noSuchMethod(InvocationMirror im) {
return true;
}
}
class D extends C {
- // bool noSuchMethod(InvocationMirror im) { // Issue 3622
- bool noSuchMethod(String function_name, List args) {
+ bool noSuchMethod(InvocationMirror im) {
return false;
}
test() {
« no previous file with comments | « tests/language/overridden_no_such_method.dart ('k') | tests/utils/dummy_compiler_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698