Tested and fixed class level computations
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user