Finds the definition of a variable and all other uses from that point on
For example, for the following code
y <- 5 f <- function() { y <- 8 print(y) } Copy
y <- 5 f <- function() { y <- 8 print(y) }
Dataflow Graph
NodeId of Symbol to resolve
List including the Definitions and Refereneces 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