17d16e41d7
R=brianwilkerson@google.com BUG= Review URL: https://codereview.chromium.org//11416307 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@15643 260f80e4-7a28-3924-810f-c04153c831b5
70 lines
2.6 KiB
Java
70 lines
2.6 KiB
Java
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
package com.google.dart.compiler;
|
|
|
|
/**
|
|
* Valid error codes for the errors produced by the Dart compiler.
|
|
*/
|
|
public enum DartCompilerErrorCode implements ErrorCode {
|
|
CONSOLE_WEB_MIX(ErrorSeverity.INFO,
|
|
"Libraries 'dart:io' (console apps only) and 'dart:html' (web apps only) cannot be used together"),
|
|
DUPLICATE_IMPORTED_LIBRARY_NAME("a library with name '%s' was already imported: %s"),
|
|
ENTRY_POINT_METHOD_CANNOT_HAVE_PARAMETERS(ErrorSeverity.WARNING,
|
|
"Main entry point method cannot have parameters"),
|
|
ENTRY_POINT_METHOD_MAY_NOT_BE_GETTER(ErrorSeverity.WARNING,
|
|
"Entry point \"%s\" may not be a getter"),
|
|
ENTRY_POINT_METHOD_MAY_NOT_BE_SETTER(ErrorSeverity.WARNING,
|
|
"Entry point \"%s\" may not be a setter"),
|
|
ILLEGAL_DIRECTIVES_IN_SOURCED_UNIT("This part was included by %s via a "
|
|
+ "part directive, so cannot itself contain directives other than a 'part of' directive"),
|
|
IO("Input/Output error: %s"),
|
|
MIRRORS_NOT_FULLY_IMPLEMENTED(ErrorSeverity.WARNING, "dart:mirrors is not fully implemented yet"),
|
|
MISSING_LIBRARY_DIRECTIVE_IMPORT("a library which is imported is missing a library directive: %s"),
|
|
MISSING_LIBRARY_DIRECTIVE_EXPORT("a library which is exported is missing a library directive: %s"),
|
|
MISSING_SOURCE("Cannot find referenced source: %s"),
|
|
MISSING_PART_OF_DIRECTIVE("Unit is part of library '%s', but has no 'part of' directive"),
|
|
UNIT_WAS_ALREADY_INCLUDED("Unit '%s' was already included"),
|
|
WRONG_PART_OF_NAME(
|
|
ErrorSeverity.WARNING,
|
|
"This part was included by '%s' via a 'part' directive, but uses name '%s' in 'part of' directive");
|
|
private final ErrorSeverity severity;
|
|
private final String message;
|
|
|
|
/**
|
|
* Initialize a newly created error code to have the given message and ERROR severity.
|
|
*/
|
|
private DartCompilerErrorCode(String message) {
|
|
this(ErrorSeverity.ERROR, message);
|
|
}
|
|
|
|
/**
|
|
* Initialize a newly created error code to have the given severity and message.
|
|
*/
|
|
private DartCompilerErrorCode(ErrorSeverity severity, String message) {
|
|
this.severity = severity;
|
|
this.message = message;
|
|
}
|
|
|
|
@Override
|
|
public String getMessage() {
|
|
return message;
|
|
}
|
|
|
|
@Override
|
|
public ErrorSeverity getErrorSeverity() {
|
|
return severity;
|
|
}
|
|
|
|
@Override
|
|
public SubSystem getSubSystem() {
|
|
return SubSystem.COMPILER;
|
|
}
|
|
|
|
@Override
|
|
public boolean needsRecompilation() {
|
|
return true;
|
|
}
|
|
}
|