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.src.mock_sdk; | 5 library analyzer.test.src.context.mock_sdk; |
6 | 6 |
7 import 'package:analyzer/file_system/file_system.dart' as resource; | 7 import 'package:analyzer/file_system/file_system.dart' as resource; |
8 import 'package:analyzer/file_system/memory_file_system.dart' as resource; | 8 import 'package:analyzer/file_system/memory_file_system.dart' as resource; |
9 import 'package:analyzer/src/context/cache.dart'; | 9 import 'package:analyzer/src/context/cache.dart'; |
10 import 'package:analyzer/src/context/context.dart'; | 10 import 'package:analyzer/src/context/context.dart'; |
11 import 'package:analyzer/src/generated/engine.dart' | 11 import 'package:analyzer/src/generated/engine.dart' |
12 show AnalysisEngine, ChangeSet; | 12 show AnalysisEngine, ChangeSet; |
13 import 'package:analyzer/src/generated/sdk.dart'; | 13 import 'package:analyzer/src/generated/sdk.dart'; |
14 import 'package:analyzer/src/generated/source.dart'; | 14 import 'package:analyzer/src/generated/source.dart'; |
15 | 15 |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 | 371 |
372 @override | 372 @override |
373 AnalysisCache createCacheFromSourceFactory(SourceFactory factory) { | 373 AnalysisCache createCacheFromSourceFactory(SourceFactory factory) { |
374 if (factory == null) { | 374 if (factory == null) { |
375 return super.createCacheFromSourceFactory(factory); | 375 return super.createCacheFromSourceFactory(factory); |
376 } | 376 } |
377 return new AnalysisCache( | 377 return new AnalysisCache( |
378 <CachePartition>[AnalysisEngine.instance.partitionManager.forSdk(sdk)]); | 378 <CachePartition>[AnalysisEngine.instance.partitionManager.forSdk(sdk)]); |
379 } | 379 } |
380 } | 380 } |
OLD | NEW |