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

Unified Diff: pkg/front_end/test/src/incremental/mock_sdk.dart

Issue 3009803002: Mark types of Constructor parameters and preserve referenced typedefs. (Closed)
Patch Set: Created 3 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/test/src/incremental/mock_sdk.dart
diff --git a/pkg/front_end/test/src/incremental/mock_sdk.dart b/pkg/front_end/test/src/incremental/mock_sdk.dart
index f82d07a622a193e04fe05d7d295d6e4119b8b2a0..fb05af8a8be61ae8c66e1496341bb1c4d988e119 100644
--- a/pkg/front_end/test/src/incremental/mock_sdk.dart
+++ b/pkg/front_end/test/src/incremental/mock_sdk.dart
@@ -197,6 +197,7 @@ abstract class Iterable<E> {
class List<E> implements Iterable<E> {
List();
+ factory List.from(Iterable elements, {bool growable: true}) => null;
void add(E value) {}
void addAll(Iterable<E> iterable) {}
E operator [](int index) => null;
@@ -226,6 +227,7 @@ external bool identical(Object a, Object b);
void print(Object o) {}
abstract class _SyncIterable implements Iterable {}
+class _InvocationMirror {}
''';
/// Create SDK libraries which are used by Fasta to perform kernel generation.

Powered by Google App Engine
This is Rietveld 408576698