@syntest/cfg
Version:
A Control Flow Graph package
18 lines • 493 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Node = void 0;
/**
* Represents a basic block in a control flow graph.
*/
class Node {
constructor(id, type, label, statements, metadata, description) {
this.id = id;
this.type = type;
this.label = label;
this.statements = statements;
this.metadata = metadata;
this.description = description;
}
}
exports.Node = Node;
//# sourceMappingURL=Node.js.map