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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/StaticWarningCode.java

Issue 218993013: Fix for 16133 - Warnings for both required getters and setters in concrete subclasses will appear (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 | « no previous file | editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/verifier/ErrorVerifier.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/StaticWarningCode.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/StaticWarningCode.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/StaticWarningCode.java
index c8e12062d290097c97e65fcafc10eb4870a73455..74d621ce450a1cad86e14330961a9f45e212ee06 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/StaticWarningCode.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/StaticWarningCode.java
@@ -567,7 +567,7 @@ public enum StaticWarningCode implements ErrorCode {
* @param additionalCount the number of additional missing members that aren't listed
*/
NON_ABSTRACT_CLASS_INHERITS_ABSTRACT_MEMBER_FIVE_PLUS(
- "Missing concrete implementation of '%s', '%s', '%s', '%s' and %d more"),
+ "Missing concrete implementation of %s, %s, %s, %s and %d more"),
/**
* 7.9.1 Inheritance and Overriding: It is a static warning if a non-abstract class inherits an
@@ -587,7 +587,7 @@ public enum StaticWarningCode implements ErrorCode {
* @param memberName the name of the fourth member
*/
NON_ABSTRACT_CLASS_INHERITS_ABSTRACT_MEMBER_FOUR(
- "Missing concrete implementation of '%s', '%s', '%s' and '%s'"),
+ "Missing concrete implementation of %s, %s, %s and %s"),
/**
* 7.9.1 Inheritance and Overriding: It is a static warning if a non-abstract class inherits an
@@ -603,7 +603,7 @@ public enum StaticWarningCode implements ErrorCode {
*
* @param memberName the name of the member
*/
- NON_ABSTRACT_CLASS_INHERITS_ABSTRACT_MEMBER_ONE("Missing concrete implementation of '%s'"),
+ NON_ABSTRACT_CLASS_INHERITS_ABSTRACT_MEMBER_ONE("Missing concrete implementation of %s"),
/**
* 7.9.1 Inheritance and Overriding: It is a static warning if a non-abstract class inherits an
@@ -622,7 +622,7 @@ public enum StaticWarningCode implements ErrorCode {
* @param memberName the name of the third member
*/
NON_ABSTRACT_CLASS_INHERITS_ABSTRACT_MEMBER_THREE(
- "Missing concrete implementation of '%s', '%s' and '%s'"),
+ "Missing concrete implementation of %s, %s and %s"),
/**
* 7.9.1 Inheritance and Overriding: It is a static warning if a non-abstract class inherits an
@@ -639,8 +639,7 @@ public enum StaticWarningCode implements ErrorCode {
* @param memberName the name of the first member
* @param memberName the name of the second member
*/
- NON_ABSTRACT_CLASS_INHERITS_ABSTRACT_MEMBER_TWO(
- "Missing concrete implementation of '%s' and '%s'"),
+ NON_ABSTRACT_CLASS_INHERITS_ABSTRACT_MEMBER_TWO("Missing concrete implementation of %s and %s"),
/**
* 13.11 Try: An on-catch clause of the form <i>on T catch (p<sub>1</sub>, p<sub>2</sub>) s</i> or
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/verifier/ErrorVerifier.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698