*/
public MethodInvocation createSuperInvocation (String name, IBytecodeReferenceable... parameters) {
IBytecodeResolvable st = this.getEnclosingType().getSuperType();
if (st == null) st = this.getResolutionPool().resolve(Object.class.getName());
IBytecodeMethod method = st.findMethod(this.getResolutionPool(), name, getTypes(parameters));
if (method == null)
throw new BytecodeException("No such method could be found: " + name + " for " + st.getType().toDescriptorString());
return this.createInvocation(resolve("this"), method, parameters);