| 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 mocks; | 5 library mocks; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:io'; | 8 import 'dart:io'; |
| 9 | 9 |
| 10 @MirrorsUsed(targets: 'mocks', override: '*') | 10 @MirrorsUsed(targets: 'mocks', override: '*') |
| 11 import 'dart:mirrors'; | 11 import 'dart:mirrors'; |
| 12 | 12 |
| 13 import 'package:analyzer/file_system/file_system.dart' as resource; |
| 14 import 'package:analyzer/file_system/memory_file_system.dart' as resource; |
| 13 import 'package:analysis_server/src/analysis_server.dart'; | 15 import 'package:analysis_server/src/analysis_server.dart'; |
| 14 import 'package:analysis_server/src/channel.dart'; | 16 import 'package:analysis_server/src/channel.dart'; |
| 15 import 'package:analysis_server/src/operation/operation_analysis.dart'; | 17 import 'package:analysis_server/src/operation/operation_analysis.dart'; |
| 16 import 'package:analysis_server/src/operation/operation.dart'; | 18 import 'package:analysis_server/src/operation/operation.dart'; |
| 17 import 'package:analysis_server/src/package_map_provider.dart'; | 19 import 'package:analysis_server/src/package_map_provider.dart'; |
| 18 import 'package:analysis_server/src/protocol.dart'; | 20 import 'package:analysis_server/src/protocol.dart'; |
| 19 import 'package:analysis_server/src/resource.dart' as resource; | |
| 20 import 'package:analyzer/src/generated/engine.dart'; | 21 import 'package:analyzer/src/generated/engine.dart'; |
| 21 import 'package:analyzer/src/generated/sdk.dart'; | 22 import 'package:analyzer/src/generated/sdk.dart'; |
| 22 import 'package:analyzer/src/generated/source.dart'; | 23 import 'package:analyzer/src/generated/source.dart'; |
| 23 import 'package:matcher/matcher.dart'; | 24 import 'package:matcher/matcher.dart'; |
| 24 import 'package:mock/mock.dart'; | 25 import 'package:mock/mock.dart'; |
| 25 import 'package:unittest/unittest.dart'; | 26 import 'package:unittest/unittest.dart'; |
| 26 import 'package:analyzer/index/index.dart'; | 27 import 'package:analyzer/index/index.dart'; |
| 27 | 28 |
| 28 /** | 29 /** |
| 29 * Answer the absolute path the the SDK relative to the currently running | 30 * Answer the absolute path the the SDK relative to the currently running |
| (...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 /** | 432 /** |
| 432 * Dependency list that will be returned by the next call to [computePackageMa
p]. | 433 * Dependency list that will be returned by the next call to [computePackageMa
p]. |
| 433 */ | 434 */ |
| 434 Set<String> dependencies = new Set<String>(); | 435 Set<String> dependencies = new Set<String>(); |
| 435 | 436 |
| 436 @override | 437 @override |
| 437 PackageMapInfo computePackageMap(resource.Folder folder) { | 438 PackageMapInfo computePackageMap(resource.Folder folder) { |
| 438 return new PackageMapInfo(packageMap, dependencies); | 439 return new PackageMapInfo(packageMap, dependencies); |
| 439 } | 440 } |
| 440 } | 441 } |
| OLD | NEW |