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

Unified Diff: pkg/unittest/matcher.dart

Issue 11314019: Using 'interface' and 'abstract' for methods should produce error (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
Index: pkg/unittest/matcher.dart
diff --git a/pkg/unittest/matcher.dart b/pkg/unittest/matcher.dart
index d12418533e4aa5eb9d39c73a92d12087aee8fb6b..1c430f192fc645cc4901ac1d1e3a14ea5fa982aa 100644
--- a/pkg/unittest/matcher.dart
+++ b/pkg/unittest/matcher.dart
@@ -38,13 +38,13 @@ abstract class BaseMatcher implements Matcher {
* [matchState] may be used to return additional info for
* the use of [describeMismatch].
*/
- abstract bool matches(item, MatchState matchState);
+ bool matches(item, MatchState matchState);
/**
* Creates a textual description of a matcher,
* by appending to [mismatchDescription].
*/
- abstract Description describe(Description mismatchDescription);
+ Description describe(Description mismatchDescription);
/**
* Generates a description of the matcher failed for a particular

Powered by Google App Engine
This is Rietveld 408576698