OLD | NEW |
1 // This code was auto-generated, is not intended to be edited, and is subject to | 1 // This code was auto-generated, is not intended to be edited, and is subject to |
2 // significant change. Please see the README file for more information. | 2 // significant change. Please see the README file for more information. |
3 library engine.error; | 3 library engine.error; |
4 import 'java_core.dart'; | 4 import 'java_core.dart'; |
5 import 'source.dart'; | 5 import 'source.dart'; |
6 import 'ast.dart' show ASTNode; | 6 import 'ast.dart' show ASTNode; |
7 import 'scanner.dart' show Token; | 7 import 'scanner.dart' show Token; |
8 /** | 8 /** |
9 * Instances of the enumeration `ErrorSeverity` represent the severity of an [Er
rorCode] | 9 * Instances of the enumeration `ErrorSeverity` represent the severity of an [Er
rorCode] |
10 * . | 10 * . |
(...skipping 3418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3429 */ | 3429 */ |
3430 StaticTypeWarningCode.con2(String name, int ordinal, String message, String co
rrection) : super(name, ordinal) { | 3430 StaticTypeWarningCode.con2(String name, int ordinal, String message, String co
rrection) : super(name, ordinal) { |
3431 this._message = message; | 3431 this._message = message; |
3432 this.correction6 = correction; | 3432 this.correction6 = correction; |
3433 } | 3433 } |
3434 String get correction => correction6; | 3434 String get correction => correction6; |
3435 ErrorSeverity get errorSeverity => ErrorType.STATIC_TYPE_WARNING.severity; | 3435 ErrorSeverity get errorSeverity => ErrorType.STATIC_TYPE_WARNING.severity; |
3436 String get message => _message; | 3436 String get message => _message; |
3437 ErrorType get type => ErrorType.STATIC_TYPE_WARNING; | 3437 ErrorType get type => ErrorType.STATIC_TYPE_WARNING; |
3438 } | 3438 } |
OLD | NEW |