| Index: pkg/analyzer/lib/src/dart/element/handle.dart
|
| diff --git a/pkg/analyzer/lib/src/dart/element/handle.dart b/pkg/analyzer/lib/src/dart/element/handle.dart
|
| index 8e9fcffad448e673e5c9cad90fd4bd65bc872f24..99b87b2478ceecaa7cabfe3163ce27635ef918b9 100644
|
| --- a/pkg/analyzer/lib/src/dart/element/handle.dart
|
| +++ b/pkg/analyzer/lib/src/dart/element/handle.dart
|
| @@ -71,6 +71,9 @@ class ClassElementHandle extends ElementHandle implements ClassElement {
|
| bool get isProxy => actualElement.isProxy;
|
|
|
| @override
|
| + bool get isRequired => actualElement.isRequired;
|
| +
|
| + @override
|
| bool get isValidMixin => actualElement.isValidMixin;
|
|
|
| @override
|
| @@ -362,6 +365,9 @@ abstract class ElementHandle implements Element {
|
| bool get isPublic => actualElement.isPublic;
|
|
|
| @override
|
| + bool get isRequired => actualElement.isRequired;
|
| +
|
| + @override
|
| bool get isSynthetic => actualElement.isSynthetic;
|
|
|
| @override
|
|
|