Tested and fixed class level computations

This commit is contained in:
Stefan Zermatten
2021-09-23 11:41:15 +02:00
parent 1270e320ce
commit 347bd8e476
11 changed files with 79 additions and 11 deletions

View File

@@ -42,5 +42,7 @@ function compute(graph, node, scope){
}
function pushDependenciesToStack(nodeId, graph, stack){
graph.forEachLinkedNode(nodeId, linkedNode => stack.push(linkedNode), true);
graph.forEachLinkedNode(nodeId, linkedNode => {
stack.push(linkedNode);
}, true);
}