UNPKG

@specs-feup/alpakka

Version:

A Smali/APK source-to-source compiler written in Typescript

22 lines 536 B
import DotFormatter from "./DotFormatter.js"; export default class DefaultDotFormatter extends DotFormatter { formatNode(node) { return { id: node.id, attrs: { label: node.id, shape: "box", }, }; } formatEdge(edge) { return { source: edge.source.id, target: edge.target.id, attrs: { label: edge.id, }, }; } } //# sourceMappingURL=DefaultDotFormatter.js.map