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

Unified Diff: pkg/analyzer/lib/src/fasta/element_store.dart

Issue 2761173004: Implement dynamic and void as types exported by core library. (Closed)
Patch Set: Use TypeBuilder.bind. Created 3 years, 9 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
« no previous file with comments | « no previous file | pkg/front_end/lib/src/fasta/builder/builder.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/fasta/element_store.dart
diff --git a/pkg/analyzer/lib/src/fasta/element_store.dart b/pkg/analyzer/lib/src/fasta/element_store.dart
index 0436db3ed03dbb990a04131fdceda92f2c58e969..8d90278471a5d78ae013a6ced8d4164fbb332683 100644
--- a/pkg/analyzer/lib/src/fasta/element_store.dart
+++ b/pkg/analyzer/lib/src/fasta/element_store.dart
@@ -88,6 +88,8 @@ class ElementStoreImplementation implements ElementStore {
}
} else if (builder is KernelProcedureBuilder) {
buildKernelFunctionElement(builder, unit, elements);
+ } else if (builder is BuiltinTypeBuilder) {
+ // TODO(ahe): Set up elements for dynamic and void.
} else {
internalError("Unhandled $name ${builder.runtimeType} in $uri");
}
« no previous file with comments | « no previous file | pkg/front_end/lib/src/fasta/builder/builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698