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

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

Issue 544693002: Split channels library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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
« no previous file with comments | « pkg/analysis_server/test/channel_test.dart ('k') | pkg/analysis_server/test/test_all.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/services/index/index.dart'; 13 import 'package:analysis_server/src/services/index/index.dart';
14 import 'package:analyzer/file_system/file_system.dart' as resource; 14 import 'package:analyzer/file_system/file_system.dart' as resource;
15 import 'package:analyzer/file_system/memory_file_system.dart' as resource; 15 import 'package:analyzer/file_system/memory_file_system.dart' as resource;
16 import 'package:analysis_server/src/analysis_server.dart'; 16 import 'package:analysis_server/src/analysis_server.dart';
17 import 'package:analysis_server/src/channel.dart'; 17 import 'package:analysis_server/src/channel/channel.dart';
18 import 'package:analysis_server/src/operation/operation_analysis.dart'; 18 import 'package:analysis_server/src/operation/operation_analysis.dart';
19 import 'package:analysis_server/src/operation/operation.dart'; 19 import 'package:analysis_server/src/operation/operation.dart';
20 import 'package:analysis_server/src/package_map_provider.dart'; 20 import 'package:analysis_server/src/package_map_provider.dart';
21 import 'package:analysis_server/src/protocol.dart' hide Element, ElementKind; 21 import 'package:analysis_server/src/protocol.dart' hide Element, ElementKind;
22 import 'package:analyzer/src/generated/element.dart'; 22 import 'package:analyzer/src/generated/element.dart';
23 import 'package:analyzer/src/generated/engine.dart'; 23 import 'package:analyzer/src/generated/engine.dart';
24 import 'package:analyzer/src/generated/source.dart'; 24 import 'package:analyzer/src/generated/source.dart';
25 import 'package:matcher/matcher.dart'; 25 import 'package:matcher/matcher.dart';
26 import 'package:typed_mock/typed_mock.dart'; 26 import 'package:typed_mock/typed_mock.dart';
27 import 'package:unittest/unittest.dart'; 27 import 'package:unittest/unittest.dart';
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 StringTypedMock(this._toString); 484 StringTypedMock(this._toString);
485 485
486 @override 486 @override
487 String toString() { 487 String toString() {
488 if (_toString != null) { 488 if (_toString != null) {
489 return _toString; 489 return _toString;
490 } 490 }
491 return super.toString(); 491 return super.toString();
492 } 492 }
493 } 493 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/channel_test.dart ('k') | pkg/analysis_server/test/test_all.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698