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

Unified Diff: lib/src/js/template.dart

Issue 1676463002: Type annotations instead of closure comments. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 10 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: lib/src/js/template.dart
diff --git a/lib/src/js/template.dart b/lib/src/js/template.dart
index 0dea734d868b1611203d44eaae9f4041bafb21c8..68ca01fc0afdb8f79f61dd32b0d6a2e6493e758f 100644
--- a/lib/src/js/template.dart
+++ b/lib/src/js/template.dart
@@ -827,6 +827,33 @@ class InstantiatorGeneratorVisitor implements NodeVisitor<Instantiator> {
Instantiator visitExportClause(ExportClause node) =>
throw new UnimplementedError();
+ Instantiator visitAnyTypeRef(AnyTypeRef node) =>
+ throw new UnimplementedError();
+
+ Instantiator visitUnknownTypeRef(UnknownTypeRef node) =>
+ throw new UnimplementedError();
+
+ Instantiator visitArrayTypeRef(ArrayTypeRef node) =>
+ throw new UnimplementedError();
+
+ Instantiator visitFunctionTypeRef(FunctionTypeRef node) =>
+ throw new UnimplementedError();
+
+ Instantiator visitGenericTypeRef(GenericTypeRef node) =>
+ throw new UnimplementedError();
+
+ Instantiator visitQualifiedTypeRef(QualifiedTypeRef node) =>
+ throw new UnimplementedError();
+
+ Instantiator visitOptionalTypeRef(OptionalTypeRef node) =>
+ throw new UnimplementedError();
+
+ Instantiator visitRecordTypeRef(RecordTypeRef node) =>
+ throw new UnimplementedError();
+
+ Instantiator visitUnionTypeRef(UnionTypeRef node) =>
+ throw new UnimplementedError();
+
@override
Instantiator visitDestructuredVariable(DestructuredVariable node) {
Instantiator makeName = visit(node.name);

Powered by Google App Engine
This is Rietveld 408576698