@lcap/nasl
Version:
NetEase Application Specific Language
18 lines • 469 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.check = void 0;
const continue_1 = require("./continue");
const identifier_1 = require("./identifier");
const checkerList = [
continue_1.check,
identifier_1.check,
];
function check(node) {
const result = [];
for (const checker of checkerList) {
result.push(...checker(node));
}
return result;
}
exports.check = check;
//# sourceMappingURL=index.js.map