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

Unified Diff: pkg/compiler/lib/src/serialization/modelz.dart

Issue 1806003002: Fix warnings about unimplemented methods in serialized element model. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/serialization/modelz.dart
diff --git a/pkg/compiler/lib/src/serialization/modelz.dart b/pkg/compiler/lib/src/serialization/modelz.dart
index 23153bf5cf2050ef1146d2c907cc4a7b25dd1eed..cbc297cf4cc364497475c455b80ddf74300db849 100644
--- a/pkg/compiler/lib/src/serialization/modelz.dart
+++ b/pkg/compiler/lib/src/serialization/modelz.dart
@@ -91,9 +91,6 @@ abstract class ElementZ extends Element with ElementCommon {
}
@override
- String get fixedBackendName => _unsupported('fixedBackendName');
-
- @override
LibraryElement get implementationLibrary => library;
@override
@@ -975,6 +972,10 @@ class GenerativeConstructorElementZ extends ConstructorElementZ {
@override
ElementKind get kind => ElementKind.GENERATIVE_CONSTRUCTOR;
+
+ @override
+ bool get isEffectiveTargetMalformed =>
+ _unsupported('isEffectiveTargetMalformed');
}
class FactoryConstructorElementZ extends ConstructorElementZ {
@@ -984,6 +985,10 @@ class FactoryConstructorElementZ extends ConstructorElementZ {
@override
ElementKind get kind => ElementKind.FACTORY_CONSTRUCTOR;
+
+ @override
+ bool get isEffectiveTargetMalformed =>
+ _unsupported('isEffectiveTargetMalformed');
}
abstract class MemberElementMixin
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698