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

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

Issue 14698013: Report CompileTimeErrorCode.MIXIN_REFERENCES_SUPER (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/CompileTimeErrorCode.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/CompileTimeErrorCode.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/CompileTimeErrorCode.java
index 3ab6046ab89775ac5e090fcc0b3446fd5356239f..cc00735209d5e3157a2bec8a6cff61d1357fc864 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/CompileTimeErrorCode.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/CompileTimeErrorCode.java
@@ -601,7 +601,7 @@ public enum CompileTimeErrorCode implements ErrorCode {
/**
* 9 Mixins: It is a compile-time error if a declared or derived mixin refers to super.
*/
- MIXIN_REFERENCES_SUPER(""),
+ MIXIN_REFERENCES_SUPER("The class '%s' cannot be used as a mixin because it references 'super'"),
/**
* 9.1 Mixin Application: It is a compile-time error if <i>S</i> does not denote a class available

Powered by Google App Engine
This is Rietveld 408576698