blob: c0be1d29227fca36714a2569aadc736f3e7666ed [file] [log] [blame]
// 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.