Add missing implementations.

BUG=

Review URL: https://codereview.chromium.org//1137683002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45642 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
sigurdm@google.com 2015-05-08 11:02:13 +00:00
parent 4cce388543
commit 8a609d2ac3

View file

@ -283,6 +283,10 @@ class ErroneousElementX extends ElementX implements ErroneousElement {
bool get isSynthesized => true;
bool get isCyclicRedirection => false;
PrefixElement get redirectionDeferredPrefix => null;
AbstractFieldElement abstractField;
unsupported() {
@ -414,6 +418,10 @@ class ErroneousConstructorElementX extends ErroneousElementX
throw new UnsupportedError("nestedClosures=");
}
set redirectionDeferredPrefix(_) {
throw new UnsupportedError("redirectionDeferredPrefix=");
}
bool get hasNoBody => false;
bool get _hasNoBody => false;