TokenType.IDENTIFIER,
name,
0));
ExecutableElementImpl executable;
if (elementArrayToMerge[0] instanceof MethodElement) {
MultiplyInheritedMethodElementImpl unionedMethod = new MultiplyInheritedMethodElementImpl(
nameIdentifier);
unionedMethod.setInheritedElements(elementArrayToMerge);
executable = unionedMethod;
} else {
MultiplyInheritedPropertyAccessorElementImpl unionedPropertyAccessor = new MultiplyInheritedPropertyAccessorElementImpl(
nameIdentifier);
unionedPropertyAccessor.setGetter(((PropertyAccessorElement) elementArrayToMerge[0]).isGetter());