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.resolver; | 3 library engine.resolver; |
4 import 'dart:collection'; | 4 import 'dart:collection'; |
5 import 'java_core.dart'; | 5 import 'java_core.dart'; |
6 import 'java_engine.dart'; | 6 import 'java_engine.dart'; |
7 import 'instrumentation.dart'; | 7 import 'instrumentation.dart'; |
8 import 'source.dart'; | 8 import 'source.dart'; |
9 import 'error.dart'; | 9 import 'error.dart'; |
10 import 'scanner.dart' as sc; | 10 import 'scanner.dart' as sc; |
(...skipping 17117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
17128 ResolverErrorCode.con2(String name, int ordinal, ErrorType type, String messag
e, String correction) : super(name, ordinal) { | 17128 ResolverErrorCode.con2(String name, int ordinal, ErrorType type, String messag
e, String correction) : super(name, ordinal) { |
17129 this._type = type; | 17129 this._type = type; |
17130 this._message = message; | 17130 this._message = message; |
17131 this.correction9 = correction; | 17131 this.correction9 = correction; |
17132 } | 17132 } |
17133 String get correction => correction9; | 17133 String get correction => correction9; |
17134 ErrorSeverity get errorSeverity => _type.severity; | 17134 ErrorSeverity get errorSeverity => _type.severity; |
17135 String get message => _message; | 17135 String get message => _message; |
17136 ErrorType get type => _type; | 17136 ErrorType get type => _type; |
17137 } | 17137 } |
OLD | NEW |