| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // 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 |
| 6 // significant change. Please see the README file for more information. | 6 // significant change. Please see the README file for more information. |
| 7 | 7 |
| 8 library engine.error; | 8 library engine.error; |
| 9 | 9 |
| 10 import 'dart:collection'; | 10 import 'dart:collection'; |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 * This method is invoked when an error has been found by the analysis engine. | 228 * This method is invoked when an error has been found by the analysis engine. |
| 229 * | 229 * |
| 230 * @param error the error that was just found (not `null`) | 230 * @param error the error that was just found (not `null`) |
| 231 */ | 231 */ |
| 232 void onError(AnalysisError error); | 232 void onError(AnalysisError error); |
| 233 } | 233 } |
| 234 | 234 |
| 235 class AnalysisErrorListener_NULL_LISTENER implements AnalysisErrorListener { | 235 class AnalysisErrorListener_NULL_LISTENER implements AnalysisErrorListener { |
| 236 @override | 236 @override |
| 237 void onError(AnalysisError event) { | 237 void onError(AnalysisError event) { |
| 238 // Ignore errors |
| 238 } | 239 } |
| 239 } | 240 } |
| 240 | 241 |
| 241 /** | 242 /** |
| 242 * Instances of the class `AnalysisErrorWithProperties` | 243 * Instances of the class `AnalysisErrorWithProperties` |
| 243 */ | 244 */ |
| 244 class AnalysisErrorWithProperties extends AnalysisError { | 245 class AnalysisErrorWithProperties extends AnalysisError { |
| 245 /** | 246 /** |
| 246 * The properties associated with this error. | 247 * The properties associated with this error. |
| 247 */ | 248 */ |
| (...skipping 3975 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4223 | 4224 |
| 4224 @override | 4225 @override |
| 4225 String get message => "{0}"; | 4226 String get message => "{0}"; |
| 4226 | 4227 |
| 4227 @override | 4228 @override |
| 4228 ErrorType get type => ErrorType.TODO; | 4229 ErrorType get type => ErrorType.TODO; |
| 4229 | 4230 |
| 4230 @override | 4231 @override |
| 4231 String get uniqueName => "${runtimeType.toString()}.${name}"; | 4232 String get uniqueName => "${runtimeType.toString()}.${name}"; |
| 4232 } | 4233 } |
| OLD | NEW |