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

Unified Diff: pkg/compiler/lib/src/resolution/resolution_strategy.dart

Issue 2968383002: Add ConstructorBodyEntity (Closed)
Patch Set: Created 3 years, 5 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/resolution/resolution_strategy.dart
diff --git a/pkg/compiler/lib/src/resolution/resolution_strategy.dart b/pkg/compiler/lib/src/resolution/resolution_strategy.dart
index e805d6ba8fd1155a2d42594d27f69e718db70b16..37fec992ec9899b42ce62ab666c568bf5da98226 100644
--- a/pkg/compiler/lib/src/resolution/resolution_strategy.dart
+++ b/pkg/compiler/lib/src/resolution/resolution_strategy.dart
@@ -515,6 +515,12 @@ class _CompilerElementEnvironment implements ElementEnvironment {
}
@override
+ void forEachConstructorBody(
+ covariant ClassElement cls, void f(ConstructorBodyEntity constructor)) {
+ cls.forEachConstructorBody(f);
+ }
+
+ @override
ClassEntity getSuperClass(covariant ClassElement cls,
{bool skipUnnamedMixinApplications: false}) {
cls.ensureResolved(_resolution);

Powered by Google App Engine
This is Rietveld 408576698