return getAdapter(ExplicitGenericInvocationSuffixAdapter.class).adapt(
explicitGenericInvocationSuffixContext, typeList);
}
if (hasTerminalNode(context, JavaParser.THIS)) {
ThisInvocation thisInvocation = createNode(context, ThisInvocation.class);
thisInvocation.setTypeArguments(typeList);
ArgumentsContext argumentsContext = getChild(context, ArgumentsContext.class);
if (argumentsContext != null) {
thisInvocation.setArguments(
getAdapter(ArgumentsAdapter.class).adapt(argumentsContext));
}
return thisInvocation;
}