| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 1 // This code was auto-generated, is not intended to be edited, and is subject to | 5 // 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. | 6 // significant change. Please see the README file for more information. |
| 3 | 7 |
| 4 library engine.error; | 8 library engine.error; |
| 5 | 9 |
| 6 import 'java_core.dart'; | 10 import 'java_core.dart'; |
| 7 import 'source.dart'; | 11 import 'source.dart'; |
| 8 import 'scanner.dart' show Token; | 12 import 'scanner.dart' show Token; |
| 9 import 'ast.dart' show ASTNode; | 13 import 'ast.dart' show ASTNode; |
| 10 import 'element.dart' show Element; | 14 import 'element.dart' show Element; |
| (...skipping 3621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3632 StaticTypeWarningCode.con2(String name, int ordinal, this.message, String corr
ection) : super(name, ordinal) { | 3636 StaticTypeWarningCode.con2(String name, int ordinal, this.message, String corr
ection) : super(name, ordinal) { |
| 3633 this.correction7 = correction; | 3637 this.correction7 = correction; |
| 3634 } | 3638 } |
| 3635 | 3639 |
| 3636 String get correction => correction7; | 3640 String get correction => correction7; |
| 3637 | 3641 |
| 3638 ErrorSeverity get errorSeverity => ErrorType.STATIC_TYPE_WARNING.severity; | 3642 ErrorSeverity get errorSeverity => ErrorType.STATIC_TYPE_WARNING.severity; |
| 3639 | 3643 |
| 3640 ErrorType get type => ErrorType.STATIC_TYPE_WARNING; | 3644 ErrorType get type => ErrorType.STATIC_TYPE_WARNING; |
| 3641 } | 3645 } |
| OLD | NEW |