Index: pkg/analyzer_experimental/lib/src/generated/java_core.dart |
diff --git a/pkg/analyzer_experimental/lib/src/generated/java_core.dart b/pkg/analyzer_experimental/lib/src/generated/java_core.dart |
index 4e9d2588629fc306f3e5ea83d45003403e502ff0..96651f3bc709ccf62d8efd33e09a1b00693e565d 100644 |
--- a/pkg/analyzer_experimental/lib/src/generated/java_core.dart |
+++ b/pkg/analyzer_experimental/lib/src/generated/java_core.dart |
@@ -47,7 +47,26 @@ bool isInstanceOf(o, Type t) { |
} |
} |
if (tTypeName == "ExecutableElement") { |
- if (oTypeName == "MethodElementImpl" || oTypeName == "FunctionElementImpl") { |
+ if (oTypeName == "MethodElementImpl" || |
+ oTypeName == "FunctionElementImpl" || |
+ oTypeName == "PropertyAccessorElementImpl") { |
+ return true; |
+ } |
+ } |
+ if (tTypeName == "ParameterElement") { |
+ if (oTypeName == "FieldFormalParameterElementImpl" || |
+ oTypeName == "DefaultFieldFormalParameterElementImpl" || |
+ oTypeName == "DefaultParameterElementImpl") { |
+ return true; |
+ } |
+ } |
+ if (tTypeName == "VariableElement") { |
+ if (oTypeName == "LocalVariableElementImpl" || |
+ oTypeName == "ConstLocalVariableElementImpl" || |
+ oTypeName == "FieldElementImpl" || |
+ oTypeName == "ConstFieldElementImpl" || |
+ oTypeName == "TopLevelVariableElementImpl" || |
+ oTypeName == "ConstTopLevelVariableElementImpl") { |
return true; |
} |
} |