handle Super Call
fun handleSuperCall(callee: MemberExpression, curClass: RecordDeclaration, scopeManager: ScopeManager): Boolean
Handle calls in the form of super.call() or ClassName.super.call(), conforming to JLS13 §15.12.1.
This function basically sets the correct type of the Reference containing the "super" keyword. Afterwards, we can use the regular SymbolResolver.resolveMemberCallee to resolve the MemberCallExpression.
Parameters
callee
The callee of the call expression that needs to be adjusted
cur Class
The class containing the call