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

Unified Diff: pkg/compiler/lib/src/dart_backend/backend_ast_emitter.dart

Issue 968843003: Implement type argument access and reification of runtime types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Unbreak long line. Created 5 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: pkg/compiler/lib/src/dart_backend/backend_ast_emitter.dart
diff --git a/pkg/compiler/lib/src/dart_backend/backend_ast_emitter.dart b/pkg/compiler/lib/src/dart_backend/backend_ast_emitter.dart
index 787dd5f3739eadb55c92ce7f6adfe5a1fe42534f..a09107aa1fd971c678d91fcfe511cdad0e1c8d60 100644
--- a/pkg/compiler/lib/src/dart_backend/backend_ast_emitter.dart
+++ b/pkg/compiler/lib/src/dart_backend/backend_ast_emitter.dart
@@ -950,6 +950,16 @@ class ASTEmitter
return errorUnsupportedNode(node);
}
+ @override
+ Expression visitReadTypeVariable(tree.ReadTypeVariable node, arg) {
+ return errorUnsupportedNode(node);
+ }
+
+ @override
+ Expression visitReifyRuntimeType(tree.ReifyRuntimeType node, arg) {
+ return errorUnsupportedNode(node);
+ }
+
errorUnsupportedNode(tree.JsSpecificNode node) {
throw '$node not supported by dart backend';
}
« no previous file with comments | « pkg/compiler/lib/src/cps_ir/type_propagation.dart ('k') | pkg/compiler/lib/src/js_backend/codegen/codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698