Package com.google.javascript.rhino
Interface StaticRef
-
- All Known Subinterfaces:
StaticTypedRef
- All Known Implementing Classes:
AbstractVar,Property,Reference,SimpleReference,SymbolTable.Reference,TypedVar,Var
public interface StaticRefTheStaticReftells us all the ways that aStaticSlotis used in a program.- Author:
- [email protected] (Nick Santos)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NodegetNode()The node where the reference lives.StaticSourceFilegetSourceFile()The source file where the reference lives.StaticSlotgetSymbol()The variable that this reference points to.
-
-
-
Method Detail
-
getSymbol
StaticSlot getSymbol()
The variable that this reference points to.
-
getNode
Node getNode()
The node where the reference lives.
-
getSourceFile
StaticSourceFile getSourceFile()
The source file where the reference lives.
-
-