UNPKG

@specs-feup/clava

Version:

A C/C++ source-to-source compiler written in Typescript

17 lines 419 B
import EdgeData from "@specs-feup/lara/api/lara/graphs/EdgeData.js"; export default class ScgEdgeData extends EdgeData { /** * The calls that contributed to this edge */ $calls = []; get calls() { return this.$calls; } inc($call) { this.$calls.push($call); } toString() { return this.$calls.length.toString(); } } //# sourceMappingURL=ScgEdgeData.js.map