• 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)
    }

    Parameters

    Returns undefined | NodeId[]

    List including the Definitions and Refereneces to that definition

    getAllRefsToSymbol('3@y') returns ['3@y', '4@y']