| 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.sdk.io; | 3 library engine.sdk.io; |
| 4 import 'dart:io'; | |
| 5 import 'java_core.dart'; | 4 import 'java_core.dart'; |
| 6 import 'java_io.dart'; | 5 import 'java_io.dart'; |
| 7 import 'java_engine.dart'; | |
| 8 import 'java_engine_io.dart'; | 6 import 'java_engine_io.dart'; |
| 9 import 'source_io.dart'; | 7 import 'source_io.dart'; |
| 10 import 'error.dart'; | 8 import 'error.dart'; |
| 11 import 'scanner.dart'; | 9 import 'scanner.dart'; |
| 12 import 'ast.dart'; | 10 import 'ast.dart'; |
| 13 import 'parser.dart'; | 11 import 'parser.dart'; |
| 14 import 'sdk.dart'; | 12 import 'sdk.dart'; |
| 15 import 'engine.dart'; | 13 import 'engine.dart'; |
| 16 /** | 14 /** |
| 17 * Instances of the class `DirectoryBasedDartSdk` represent a Dart SDK installed
in a | 15 * Instances of the class `DirectoryBasedDartSdk` represent a Dart SDK installed
in a |
| (...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 return null; | 535 return null; |
| 538 } | 536 } |
| 539 } | 537 } |
| 540 class AnalysisErrorListener_9 implements AnalysisErrorListener { | 538 class AnalysisErrorListener_9 implements AnalysisErrorListener { |
| 541 List<bool> foundError; | 539 List<bool> foundError; |
| 542 AnalysisErrorListener_9(this.foundError); | 540 AnalysisErrorListener_9(this.foundError); |
| 543 void onError(AnalysisError error) { | 541 void onError(AnalysisError error) { |
| 544 foundError[0] = true; | 542 foundError[0] = true; |
| 545 } | 543 } |
| 546 } | 544 } |
| OLD | NEW |