Method.prototype.getCatchBlock = function(pLabel){
    let bb = this.getBasicBlocks();
    for(let i=0; i<bb.length; i++){
        if(bb[i].getCatchLabel()==pLabel){
            return bb[i];