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

Unified Diff: pkg/analyzer/lib/src/generated/error.dart

Issue 186153005: New analzyer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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/analyzer/lib/src/generated/error.dart
diff --git a/pkg/analyzer/lib/src/generated/error.dart b/pkg/analyzer/lib/src/generated/error.dart
index 77d4a9caa7b410771b3c8724952d775f9f889028..031254bd0d678172b765882c79b198194df69283 100644
--- a/pkg/analyzer/lib/src/generated/error.dart
+++ b/pkg/analyzer/lib/src/generated/error.dart
@@ -282,8 +282,8 @@ class ErrorReporter {
* @param node the node specifying the location of the error
* @param arguments the arguments to the error, used to compose the error message
*/
- void reportError3(ErrorCode errorCode, AstNode node, List<Object> arguments) {
- reportError5(errorCode, node.offset, node.length, arguments);
+ void reportError2(ErrorCode errorCode, AstNode node, List<Object> arguments) {
+ reportError4(errorCode, node.offset, node.length, arguments);
}
/**
@@ -293,8 +293,8 @@ class ErrorReporter {
* @param element the element which name should be used as the location of the error
* @param arguments the arguments to the error, used to compose the error message
*/
- void reportError4(ErrorCode errorCode, Element element, List<Object> arguments) {
- reportError5(errorCode, element.nameOffset, element.displayName.length, arguments);
+ void reportError3(ErrorCode errorCode, Element element, List<Object> arguments) {
+ reportError4(errorCode, element.nameOffset, element.displayName.length, arguments);
}
/**
@@ -305,7 +305,7 @@ class ErrorReporter {
* @param length the length of the location of the error
* @param arguments the arguments to the error, used to compose the error message
*/
- void reportError5(ErrorCode errorCode, int offset, int length, List<Object> arguments) {
+ void reportError4(ErrorCode errorCode, int offset, int length, List<Object> arguments) {
_errorListener.onError(new AnalysisError.con2(_source, offset, length, errorCode, arguments));
}
@@ -316,8 +316,8 @@ class ErrorReporter {
* @param token the token specifying the location of the error
* @param arguments the arguments to the error, used to compose the error message
*/
- void reportError6(ErrorCode errorCode, Token token, List<Object> arguments) {
- reportError5(errorCode, token.offset, token.length, arguments);
+ void reportError5(ErrorCode errorCode, Token token, List<Object> arguments) {
+ reportError4(errorCode, token.offset, token.length, arguments);
}
/**

Powered by Google App Engine
This is Rietveld 408576698