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

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

Issue 2346803005: Remove use of shared messages (Closed)
Patch Set: Created 4 years, 3 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 | « pkg/analyzer/lib/src/error/codes.dart ('k') | pkg/analyzer/lib/src/generated/parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/generated/shared_messages.dart
diff --git a/pkg/analyzer/lib/src/generated/generated/shared_messages.dart b/pkg/analyzer/lib/src/generated/generated/shared_messages.dart
deleted file mode 100644
index 249e939aed8fa7bd349a1039ce9770727a978ca4..0000000000000000000000000000000000000000
--- a/pkg/analyzer/lib/src/generated/generated/shared_messages.dart
+++ /dev/null
@@ -1,193 +0,0 @@
-// Copyright (c) 2015, 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.
-/*
-DON'T EDIT. GENERATED. DON'T EDIT.
-This file has been generated by 'publish.dart' in the dart_messages package.
-
-Messages are maintained in `lib/shared_messages.dart` of that same package.
-After any change to that file, run `bin/publish.dart` to generate a new version
-of the json, dart2js and analyzer representations.
-*/
-import 'package:analyzer/src/generated/error.dart';
-import 'package:analyzer/src/generated/parser.dart' show ParserErrorCode;
-
-const ParserErrorCode CONST_CONSTRUCTOR_WITH_BODY = const ParserErrorCode(
- 'CONST_CONSTRUCTOR_WITH_BODY',
- "Const constructor can't have a body.",
- "Try removing the 'const' keyword or the body."); // Generated. Don't edit.
-
-const ParserErrorCode CONST_FACTORY = const ParserErrorCode(
- 'CONST_FACTORY',
- "Only redirecting factory constructors can be declared to be 'const'.",
- "Try removing the 'const' keyword or replacing the body with '=' followed by a valid target."); // Generated. Don't edit.
-
-const ParserErrorCode CONST_CLASS = const ParserErrorCode(
- 'CONST_CLASS',
- "Classes can't be declared to be 'const'.",
- "Try removing the 'const' keyword or moving to the class' constructor(s)."); // Generated. Don't edit.
-
-const ParserErrorCode CONST_METHOD = const ParserErrorCode(
- 'CONST_METHOD',
- "Getters, setters and methods can't be declared to be 'const'.",
- "Try removing the 'const' keyword."); // Generated. Don't edit.
-
-const ParserErrorCode CONST_ENUM = const ParserErrorCode(
- 'CONST_ENUM',
- "Enums can't be declared to be 'const'.",
- "Try removing the 'const' keyword."); // Generated. Don't edit.
-
-const ParserErrorCode CONST_TYPEDEF = const ParserErrorCode(
- 'CONST_TYPEDEF',
- "Type aliases can't be declared to be 'const'.",
- "Try removing the 'const' keyword."); // Generated. Don't edit.
-
-const ParserErrorCode CONST_AND_FINAL = const ParserErrorCode(
- 'CONST_AND_FINAL',
- "Members can't be declared to be both 'const' and 'final'.",
- "Try removing either the 'const' or 'final' keyword."); // Generated. Don't edit.
-
-const ParserErrorCode CONST_AND_VAR = const ParserErrorCode(
- 'CONST_AND_VAR',
- "Members can't be declared to be both 'const' and 'var'.",
- "Try removing either the 'const' or 'var' keyword."); // Generated. Don't edit.
-
-const ParserErrorCode CLASS_IN_CLASS = const ParserErrorCode(
- 'CLASS_IN_CLASS',
- "Classes can't be declared inside other classes.",
- "Try moving the class to the top-level."); // Generated. Don't edit.
-
-const ParserErrorCode CONSTRUCTOR_WITH_RETURN_TYPE = const ParserErrorCode(
- 'CONSTRUCTOR_WITH_RETURN_TYPE',
- "Constructors can't have a return type.",
- "Try removing the return type."); // Generated. Don't edit.
-
-const ParserErrorCode MISSING_EXPRESSION_IN_THROW = const ParserErrorCode(
- 'MISSING_EXPRESSION_IN_THROW',
- "Missing expression after 'throw'.",
- "Did you mean 'rethrow'?"); // Generated. Don't edit.
-
-const CompileTimeErrorCode RETHROW_OUTSIDE_CATCH = const CompileTimeErrorCode(
- 'RETHROW_OUTSIDE_CATCH',
- "Rethrow must be inside of catch clause.",
- "Try moving the expression into a catch clause, or using a 'throw' expression."); // Generated. Don't edit.
-
-const CompileTimeErrorCode RETURN_IN_GENERATIVE_CONSTRUCTOR = const CompileTimeErrorCode(
- 'RETURN_IN_GENERATIVE_CONSTRUCTOR',
- "Constructors can't return values.",
- "Try removing the return statement or using a factory constructor."); // Generated. Don't edit.
-
-const CompileTimeErrorCode RETURN_IN_GENERATOR = const CompileTimeErrorCode(
- 'RETURN_IN_GENERATOR',
- "Can't return a value from a generator function (using the '{0}' modifier).",
- "Try removing the value, replacing 'return' with 'yield' or changing the method body modifier."); // Generated. Don't edit.
-
-const StaticTypeWarningCode RETURN_OF_INVALID_TYPE = const StaticTypeWarningCode(
- 'RETURN_OF_INVALID_TYPE',
- "The return type '{0}' is not a '{1}', as defined by the method '{2}'.",
- null); // Generated. Don't edit.
-
-const HintCode ARGUMENT_TYPE_NOT_ASSIGNABLE_HINT = const HintCode(
- 'ARGUMENT_TYPE_NOT_ASSIGNABLE',
- "The argument type '{0}' cannot be assigned to the parameter type '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticWarningCode ARGUMENT_TYPE_NOT_ASSIGNABLE_STATIC_WARNING = const StaticWarningCode(
- 'ARGUMENT_TYPE_NOT_ASSIGNABLE',
- "The argument type '{0}' cannot be assigned to the parameter type '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticTypeWarningCode UNDEFINED_METHOD_STATIC_TYPE_WARNING = const StaticTypeWarningCode(
- 'UNDEFINED_METHOD',
- "The method '{0}' is not defined for the class '{1}'.",
- null); // Generated. Don't edit.
-
-const HintCode UNDEFINED_METHOD_HINT = const HintCode(
- 'UNDEFINED_METHOD',
- "The method '{0}' is not defined for the class '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticTypeWarningCode UNDEFINED_METHOD_WITH_CONSTRUCTOR = const StaticTypeWarningCode(
- 'UNDEFINED_METHOD_WITH_CONSTRUCTOR',
- "The method '{0}' is not defined for the class '{1}', but a constructor with that name is defined.",
- "Try adding 'new' or 'const' to invoke the constuctor, or change the method name."); // Generated. Don't edit.
-
-const StaticTypeWarningCode UNDEFINED_GETTER_STATIC_TYPE_WARNING = const StaticTypeWarningCode(
- 'UNDEFINED_GETTER',
- "The getter '{0}' is not defined for the class '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticWarningCode UNDEFINED_GETTER_STATIC_WARNING = const StaticWarningCode(
- 'UNDEFINED_GETTER',
- "The getter '{0}' is not defined for the class '{1}'.",
- null); // Generated. Don't edit.
-
-const HintCode UNDEFINED_GETTER_HINT = const HintCode(
- 'UNDEFINED_GETTER',
- "The getter '{0}' is not defined for the class '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticTypeWarningCode UNDEFINED_ENUM_CONSTANT = const StaticTypeWarningCode(
- 'UNDEFINED_ENUM_CONSTANT',
- "There is no constant named '{0}' in '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticTypeWarningCode UNDEFINED_OPERATOR_STATIC_TYPE_WARNING = const StaticTypeWarningCode(
- 'UNDEFINED_OPERATOR',
- "The operator '{0}' is not defined for the class '{1}'.",
- null); // Generated. Don't edit.
-
-const HintCode UNDEFINED_OPERATOR_HINT = const HintCode(
- 'UNDEFINED_OPERATOR',
- "The operator '{0}' is not defined for the class '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticTypeWarningCode UNDEFINED_SETTER_STATIC_TYPE_WARNING = const StaticTypeWarningCode(
- 'UNDEFINED_SETTER',
- "The setter '{0}' is not defined for the class '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticWarningCode UNDEFINED_SETTER_STATIC_WARNING = const StaticWarningCode(
- 'UNDEFINED_SETTER',
- "The setter '{0}' is not defined for the class '{1}'.",
- null); // Generated. Don't edit.
-
-const HintCode UNDEFINED_SETTER_HINT = const HintCode(
- 'UNDEFINED_SETTER',
- "The setter '{0}' is not defined for the class '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticTypeWarningCode UNDEFINED_SUPER_GETTER_STATIC_TYPE_WARNING = const StaticTypeWarningCode(
- 'UNDEFINED_SUPER_GETTER',
- "The getter '{0}' is not defined in a superclass of '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticWarningCode UNDEFINED_SUPER_GETTER_STATIC_WARNING = const StaticWarningCode(
- 'UNDEFINED_SUPER_GETTER',
- "The getter '{0}' is not defined in a superclass of '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticTypeWarningCode UNDEFINED_SUPER_METHOD = const StaticTypeWarningCode(
- 'UNDEFINED_SUPER_METHOD',
- "The method '{0}' is not defined in a superclass of '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticTypeWarningCode UNDEFINED_SUPER_OPERATOR = const StaticTypeWarningCode(
- 'UNDEFINED_SUPER_OPERATOR',
- "The operator '{0}' is not defined in a superclass of '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticTypeWarningCode UNDEFINED_SUPER_SETTER_STATIC_TYPE_WARNING = const StaticTypeWarningCode(
- 'UNDEFINED_SUPER_SETTER',
- "The setter '{0}' is not defined in a superclass of '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticWarningCode UNDEFINED_SUPER_SETTER_STATIC_WARNING = const StaticWarningCode(
- 'UNDEFINED_SUPER_SETTER',
- "The setter '{0}' is not defined in a superclass of '{1}'.",
- null); // Generated. Don't edit.
-
-const StaticTypeWarningCode UNDEFINED_FUNCTION = const StaticTypeWarningCode(
- 'UNDEFINED_FUNCTION',
- "The function '{0}' is not defined.",
- null); // Generated. Don't edit.
« no previous file with comments | « pkg/analyzer/lib/src/error/codes.dart ('k') | pkg/analyzer/lib/src/generated/parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698