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 library analyzer.src.generated.sdk_io; | 5 library analyzer.src.generated.sdk_io; |
6 | 6 |
7 import 'dart:collection'; | 7 import 'dart:collection'; |
8 import 'dart:io'; | 8 import 'dart:io'; |
9 | 9 |
| 10 import 'package:analyzer/dart/ast/ast.dart'; |
10 import 'package:analyzer/src/context/context.dart'; | 11 import 'package:analyzer/src/context/context.dart'; |
11 import 'package:analyzer/src/generated/ast.dart'; | |
12 import 'package:analyzer/src/generated/engine.dart'; | 12 import 'package:analyzer/src/generated/engine.dart'; |
13 import 'package:analyzer/src/generated/error.dart'; | 13 import 'package:analyzer/src/generated/error.dart'; |
14 import 'package:analyzer/src/generated/java_core.dart'; | 14 import 'package:analyzer/src/generated/java_core.dart'; |
15 import 'package:analyzer/src/generated/java_engine.dart'; | 15 import 'package:analyzer/src/generated/java_engine.dart'; |
16 import 'package:analyzer/src/generated/java_engine_io.dart'; | 16 import 'package:analyzer/src/generated/java_engine_io.dart'; |
17 import 'package:analyzer/src/generated/java_io.dart'; | 17 import 'package:analyzer/src/generated/java_io.dart'; |
18 import 'package:analyzer/src/generated/parser.dart'; | 18 import 'package:analyzer/src/generated/parser.dart'; |
19 import 'package:analyzer/src/generated/scanner.dart'; | 19 import 'package:analyzer/src/generated/scanner.dart'; |
20 import 'package:analyzer/src/generated/sdk.dart'; | 20 import 'package:analyzer/src/generated/sdk.dart'; |
21 import 'package:analyzer/src/generated/source_io.dart'; | 21 import 'package:analyzer/src/generated/source_io.dart'; |
(...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
651 SdkLibrariesReader_LibraryBuilder libraryBuilder = | 651 SdkLibrariesReader_LibraryBuilder libraryBuilder = |
652 new SdkLibrariesReader_LibraryBuilder(_useDart2jsPaths); | 652 new SdkLibrariesReader_LibraryBuilder(_useDart2jsPaths); |
653 // If any syntactic errors were found then don't try to visit the AST | 653 // If any syntactic errors were found then don't try to visit the AST |
654 // structure. | 654 // structure. |
655 if (!errorListener.errorReported) { | 655 if (!errorListener.errorReported) { |
656 unit.accept(libraryBuilder); | 656 unit.accept(libraryBuilder); |
657 } | 657 } |
658 return libraryBuilder.librariesMap; | 658 return libraryBuilder.librariesMap; |
659 } | 659 } |
660 } | 660 } |
OLD | NEW |