blob: 5faa0c04d28c9b164bb6059a9f7227c7e902349b [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/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.