Finds the definition of a variable and all other uses from that point on
For example, for the following code
y <- 5f <- function() {y <- 8print(y)} Copy
y <- 5f <- function() {y <- 8print(y)}
Dataflow Graph
NodeId of Symbol to resolve
List including the Definitions and References to that definition
getAllRefsToSymbol('3@y') returns ['3@y', '4@y'] Copy
getAllRefsToSymbol('3@y') returns ['3@y', '4@y']
Finds the definition of a variable and all other uses from that point on
For example, for the following code