Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 11063x 11063x 11063x 11063x 33037x 33037x 33037x 33037x 33037x 33037x 33037x 33037x 11063x 11063x 1x 1x 11063x 11063x 10540x 10540x 11063x 11063x 244x 244x 11063x 11063x 268x 268x 268x 268x 12x 12x 256x 256x 256x 268x 3x 3x 3x 1x 1x 1x 3x 256x 256x 256x 11063x | import {Issue} from "../issue";
import {ABAPRule} from "./_abap_rule";
import {Try, Catch, Cleanup} from "../abap/3_structures/structures";
import {BasicRuleConfig} from "./_basic_rule_config";
import {IRuleMetadata, RuleTag} from "./_irule";
import {ABAPFile} from "../abap/abap_file";
export class TryWithoutCatchConf extends BasicRuleConfig {
}
export class TryWithoutCatch extends ABAPRule {
private conf = new TryWithoutCatchConf();
public getMetadata(): IRuleMetadata {
return {
key: "try_without_catch",
title: "TRY without CATCH",
shortDescription: `Checks for TRY blocks without a CATCH and CLEANUP block`,
badExample: `TRY.\n WRITE 'hello world'.\nENDTRY.`,
tags: [RuleTag.SingleFile],
};
}
private getMessage(): string {
return "A TRY block must have a corresponding CATCH or CLEANUP block.";
}
public getConfig() {
return this.conf;
}
public setConfig(conf: TryWithoutCatchConf) {
this.conf = conf;
}
public runParsed(file: ABAPFile) {
const issues: Issue[] = [];
const stru = file.getStructure();
if (stru === undefined) {
return [];
}
const tries = stru.findAllStructures(Try);
for (const t of tries) {
const clean = t.findDirectStructure(Cleanup);
const c = t.findDirectStructure(Catch);
if (c === undefined && clean === undefined) {
const issue = Issue.atToken(file, t.getFirstToken(), this.getMessage(), this.getMetadata().key, this.conf.severity);
issues.push(issue);
}
}
return issues;
}
}
|