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

Unified Diff: tests/lib/mirrors/fake_function_without_call_test.dart

Issue 49083004: Re-triage mirror test failures on the analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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/lib/mirrors/fake_function_without_call_test.dart
diff --git a/tests/lib/mirrors/fake_function_without_call_test.dart b/tests/lib/mirrors/fake_function_without_call_test.dart
index da6bd59544ea12c0b4472d29b22bd073374886ed..ff202fdbfaf70f15599ba04aac65d4ee4c21f9c8 100644
--- a/tests/lib/mirrors/fake_function_without_call_test.dart
+++ b/tests/lib/mirrors/fake_function_without_call_test.dart
@@ -6,7 +6,9 @@ import "dart:mirrors";
import "package:expect/expect.dart";
-class MultiArityFunction implements Function {
+class MultiArityFunction
+ implements Function /// static type warning
+{
noSuchMethod(Invocation msg) {
if (msg.memberName != #call) return super.noSuchMethod(msg);
return msg.positionalArguments.join(",");

Powered by Google App Engine
This is Rietveld 408576698