| Index: pkg/compiler/lib/src/elements/common.dart
|
| diff --git a/pkg/compiler/lib/src/elements/common.dart b/pkg/compiler/lib/src/elements/common.dart
|
| index f9c4e59201d82ebf3b347d49a57da339f3e362c6..96193cc8979304d7c0ea3d9963f80604195d0568 100644
|
| --- a/pkg/compiler/lib/src/elements/common.dart
|
| +++ b/pkg/compiler/lib/src/elements/common.dart
|
| @@ -60,6 +60,9 @@ abstract class ElementCommon implements Element {
|
| bool get isGenerativeConstructorBody =>
|
| kind == ElementKind.GENERATIVE_CONSTRUCTOR_BODY;
|
|
|
| + bool get isFactoryConstructor =>
|
| + kind == ElementKind.FACTORY_CONSTRUCTOR;
|
| +
|
| @override
|
| bool get isVariable => kind == ElementKind.VARIABLE;
|
|
|
|
|