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

Unified Diff: pkg/compiler/lib/src/ssa/kernel_ast_adapter.dart

Issue 2964683003: Split implementation of KernelToElementMapImpl (Closed)
Patch Set: Updated cf. comments Created 3 years, 6 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/ssa/kernel_ast_adapter.dart
diff --git a/pkg/compiler/lib/src/ssa/kernel_ast_adapter.dart b/pkg/compiler/lib/src/ssa/kernel_ast_adapter.dart
index 1351c9ab4aaa5bc42f7cff20ac5713f66f4ff7ba..a5b537e34f0d5f76cb068460b4ca42673cca8ba2 100644
--- a/pkg/compiler/lib/src/ssa/kernel_ast_adapter.dart
+++ b/pkg/compiler/lib/src/ssa/kernel_ast_adapter.dart
@@ -87,6 +87,10 @@ class KernelAstAdapter extends KernelToElementMapBaseMixin
_typeConverter = new DartTypeConverter(this);
}
+ void addProgram(ir.Program node) {
+ throw new UnsupportedError('KernelAstAdapter.addProgram');
+ }
+
@override
ConstantValue computeConstantValue(ConstantExpression constant,
{bool requireConstant: true}) {
@@ -139,6 +143,10 @@ class KernelAstAdapter extends KernelToElementMapBaseMixin
return target;
}
+ ir.Node getClassNode(ClassElement cls) {
+ throw new UnsupportedError('KernelAstAdapter.getClassNode');
+ }
+
@override
CommonElements get commonElements => _compiler.resolution.commonElements;
« no previous file with comments | « pkg/compiler/lib/src/library_loader.dart ('k') | pkg/compiler/lib/src/universe/resolution_world_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698