private String createAccessMethod()
{
String name = String.format("%s$access%s", node.name, PlasticUtils.nextUID());
// Kind of awkward that exceptions are specified as String[] when what we have handy is List<String>
MethodNode mn = new MethodNode(Opcodes.ACC_SYNTHETIC | Opcodes.ACC_FINAL, name, node.desc, node.signature, null);
// But it is safe enough for the two nodes to share
mn.exceptions = node.exceptions;
InstructionBuilder builder = plasticClass.newBuilder(mn);