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

Side by Side Diff: pkg/analyzer/test/src/context/mock_sdk.dart

Issue 2581803002: Add access to FutureOr in TypeProviders (and add implementation in mock sdks) (Closed)
Patch Set: Created 4 years 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
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 analyzer.test.src.context.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';
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 factory Future.delayed(Duration duration, [T computation()]) => null; 45 factory Future.delayed(Duration duration, [T computation()]) => null;
46 factory Future.value([T value]) => null; 46 factory Future.value([T value]) => null;
47 47
48 static Future<List/*<T>*/> wait/*<T>*/( 48 static Future<List/*<T>*/> wait/*<T>*/(
49 Iterable<Future/*<T>*/> futures) => null; 49 Iterable<Future/*<T>*/> futures) => null;
50 Future/*<R>*/ then/*<R>*/(onValue(T value)) => null; 50 Future/*<R>*/ then/*<R>*/(onValue(T value)) => null;
51 51
52 Future<T> whenComplete(action()); 52 Future<T> whenComplete(action());
53 } 53 }
54 54
55 class FutureOr<T> {}
56
55 abstract class Completer<T> { 57 abstract class Completer<T> {
56 factory Completer() => new _AsyncCompleter<T>(); 58 factory Completer() => new _AsyncCompleter<T>();
57 factory Completer.sync() => new _SyncCompleter<T>(); 59 factory Completer.sync() => new _SyncCompleter<T>();
58 Future<T> get future; 60 Future<T> get future;
59 void complete([value]); 61 void complete([value]);
60 void completeError(Object error, [StackTrace stackTrace]); 62 void completeError(Object error, [StackTrace stackTrace]);
61 bool get isCompleted; 63 bool get isCompleted;
62 } 64 }
63 ''', 65 ''',
64 const <String, String>{ 66 const <String, String>{
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 535
534 @override 536 @override
535 AnalysisCache createCacheFromSourceFactory(SourceFactory factory) { 537 AnalysisCache createCacheFromSourceFactory(SourceFactory factory) {
536 if (factory == null) { 538 if (factory == null) {
537 return super.createCacheFromSourceFactory(factory); 539 return super.createCacheFromSourceFactory(factory);
538 } 540 }
539 return new AnalysisCache( 541 return new AnalysisCache(
540 <CachePartition>[AnalysisEngine.instance.partitionManager.forSdk(sdk)]); 542 <CachePartition>[AnalysisEngine.instance.partitionManager.forSdk(sdk)]);
541 } 543 }
542 } 544 }
OLDNEW
« pkg/analyzer/lib/src/summary/link.dart ('K') | « pkg/analyzer/lib/src/summary/summary_sdk.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698