Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: pkg/analysis_server/test/mocks.dart

Issue 365193004: Move Index and IndexStore implementations into Engine. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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:analysis_server/src/analysis_server.dart'; 13 import 'package:analysis_server/src/analysis_server.dart';
14 import 'package:analysis_server/src/channel.dart'; 14 import 'package:analysis_server/src/channel.dart';
15 import 'package:analysis_server/src/operation/operation_analysis.dart'; 15 import 'package:analysis_server/src/operation/operation_analysis.dart';
16 import 'package:analysis_server/src/operation/operation.dart'; 16 import 'package:analysis_server/src/operation/operation.dart';
17 import 'package:analysis_server/src/package_map_provider.dart'; 17 import 'package:analysis_server/src/package_map_provider.dart';
18 import 'package:analysis_server/src/protocol.dart'; 18 import 'package:analysis_server/src/protocol.dart';
19 import 'package:analysis_server/src/resource.dart' as resource; 19 import 'package:analysis_server/src/resource.dart' as resource;
20 import 'package:analyzer/src/generated/engine.dart'; 20 import 'package:analyzer/src/generated/engine.dart';
21 import 'package:analyzer/src/generated/sdk.dart'; 21 import 'package:analyzer/src/generated/sdk.dart';
22 import 'package:analyzer/src/generated/source.dart'; 22 import 'package:analyzer/src/generated/source.dart';
23 import 'package:matcher/matcher.dart'; 23 import 'package:matcher/matcher.dart';
24 import 'package:mock/mock.dart'; 24 import 'package:mock/mock.dart';
25 import 'package:unittest/unittest.dart'; 25 import 'package:unittest/unittest.dart';
26 import 'package:analyzer/src/generated/index.dart'; 26 import 'package:analyzer/index/index.dart';
27 27
28 /** 28 /**
29 * Answer the absolute path the the SDK relative to the currently running 29 * Answer the absolute path the the SDK relative to the currently running
30 * script or throw an exception if it cannot be found. 30 * script or throw an exception if it cannot be found.
31 */ 31 */
32 String get sdkPath { 32 String get sdkPath {
33 Uri sdkUri = Platform.script.resolve('../../../sdk/'); 33 Uri sdkUri = Platform.script.resolve('../../../sdk/');
34 34
35 // Verify the directory exists 35 // Verify the directory exists
36 Directory sdkDir = new Directory.fromUri(sdkUri); 36 Directory sdkDir = new Directory.fromUri(sdkUri);
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 /** 431 /**
432 * Dependency list that will be returned by the next call to [computePackageMa p]. 432 * Dependency list that will be returned by the next call to [computePackageMa p].
433 */ 433 */
434 Set<String> dependencies = new Set<String>(); 434 Set<String> dependencies = new Set<String>();
435 435
436 @override 436 @override
437 PackageMapInfo computePackageMap(resource.Folder folder) { 437 PackageMapInfo computePackageMap(resource.Folder folder) {
438 return new PackageMapInfo(packageMap, dependencies); 438 return new PackageMapInfo(packageMap, dependencies);
439 } 439 }
440 } 440 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698