| 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 test.context.directory.manager; | 5 library test.context.directory.manager; |
| 6 | 6 |
| 7 import 'package:analysis_server/src/context_manager.dart'; | 7 import 'package:analysis_server/src/context_manager.dart'; |
| 8 import 'package:analysis_server/src/package_map_provider.dart'; | 8 import 'package:analysis_server/src/package_map_provider.dart'; |
| 9 import 'package:analysis_testing/reflective_tests.dart'; | 9 import 'reflective_tests.dart'; |
| 10 import 'package:analyzer/file_system/file_system.dart'; | 10 import 'package:analyzer/file_system/file_system.dart'; |
| 11 import 'package:analyzer/file_system/memory_file_system.dart'; | 11 import 'package:analyzer/file_system/memory_file_system.dart'; |
| 12 import 'package:analyzer/src/generated/engine.dart'; | 12 import 'package:analyzer/src/generated/engine.dart'; |
| 13 import 'package:analyzer/src/generated/source.dart'; | 13 import 'package:analyzer/src/generated/source.dart'; |
| 14 import 'package:path/path.dart'; | 14 import 'package:path/path.dart'; |
| 15 import 'package:unittest/unittest.dart'; | 15 import 'package:unittest/unittest.dart'; |
| 16 | 16 |
| 17 import 'mocks.dart'; | 17 import 'mocks.dart'; |
| 18 | 18 |
| 19 | 19 |
| (...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 697 currentContextFilePaths.remove(path); | 697 currentContextFilePaths.remove(path); |
| 698 currentContextPackageMaps.remove(path); | 698 currentContextPackageMaps.remove(path); |
| 699 } | 699 } |
| 700 | 700 |
| 701 @override | 701 @override |
| 702 void updateContextPackageMap(Folder contextFolder, Map<String, | 702 void updateContextPackageMap(Folder contextFolder, Map<String, |
| 703 List<Folder>> packageMap) { | 703 List<Folder>> packageMap) { |
| 704 currentContextPackageMaps[contextFolder.path] = packageMap; | 704 currentContextPackageMaps[contextFolder.path] = packageMap; |
| 705 } | 705 } |
| 706 } | 706 } |
| OLD | NEW |