Function
visitOperator
(graph: Dagre.Graph, idTable: IdTable, operator: InternalProducer)
Source from the content-addressed store, hash-verified
| 97 | } |
| 98 | |
| 99 | function visitOperator(graph: Dagre.Graph, idTable: IdTable, operator: InternalProducer) { |
| 100 | const id = idTable.getId(operator); |
| 101 | if (!graph.node(id)) { |
| 102 | graph.setNode(id, { |
| 103 | id, |
| 104 | type: 'operator', |
| 105 | label: operator.type, |
| 106 | width: OPERATOR_NODE_SIZE[0], |
| 107 | height: OPERATOR_NODE_SIZE[1], |
| 108 | }); |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | function visitEdge(graph: Dagre.Graph, |
| 113 | idTable: IdTable, |
Tested by
no test coverage detected