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

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: Fixes for review comments 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 5e97e72b790efaf44e68ac588d1c27dd78dc342b..38ca6b0a9845c52dea619b55048844271ee9ab4b 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