| Index: pkg/compiler/lib/src/elements/modelx.dart
|
| diff --git a/pkg/compiler/lib/src/elements/modelx.dart b/pkg/compiler/lib/src/elements/modelx.dart
|
| index 6dfd7511605d8e24d9c4548f1c1b529cca755b6f..9c18aae86806b363e6f3798286ea48eaccfbf531 100644
|
| --- a/pkg/compiler/lib/src/elements/modelx.dart
|
| +++ b/pkg/compiler/lib/src/elements/modelx.dart
|
| @@ -100,7 +100,6 @@ abstract class ElementX extends Element with ElementCommon {
|
| bool get isInstanceMember => false;
|
| bool get isDeferredLoaderGetter => false;
|
|
|
| - bool get isFactoryConstructor => modifiers.isFactory;
|
| bool get isConst => modifiers.isConst;
|
| bool get isFinal => modifiers.isFinal;
|
| bool get isStatic => modifiers.isStatic;
|
| @@ -122,7 +121,7 @@ abstract class ElementX extends Element with ElementCommon {
|
|
|
| bool get isAssignable {
|
| if (isFinal || isConst) return false;
|
| - if (isFunction || isGenerativeConstructor) return false;
|
| + if (isFunction || isConstructor) return false;
|
| return true;
|
| }
|
|
|
|
|