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

Unified Diff: pkg/compiler/lib/src/kernel/env.dart

Issue 2996723002: Support typedef type literals (Closed)
Patch Set: Cleanup 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/compiler/lib/src/kernel/env.dart
diff --git a/pkg/compiler/lib/src/kernel/env.dart b/pkg/compiler/lib/src/kernel/env.dart
index 7ffc47166df72f505dafeb0034804792bdd8de1c..57c853b6a60bc3e4b028a7611ae2b211cde8632c 100644
--- a/pkg/compiler/lib/src/kernel/env.dart
+++ b/pkg/compiler/lib/src/kernel/env.dart
@@ -593,3 +593,11 @@ class FieldDataImpl extends MemberDataImpl implements FieldData {
return new FieldDataImpl(node, definition);
}
}
+
+class TypedefData {
+ final ir.Typedef node;
+ final TypedefEntity element;
+ final TypedefType rawType;
+
+ TypedefData(this.node, this.element, this.rawType);
+}

Powered by Google App Engine
This is Rietveld 408576698