@eagleoutice/flowr - v2.10.3
    Preparing search index...
    • 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 NodeId[] | undefined

      List including the Definitions and References to that definition

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