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