Uses of Class
org.mozilla.javascript.ast.Symbol
-
Packages that use Symbol Package Description org.mozilla.javascript.ast -
-
Uses of Symbol in org.mozilla.javascript.ast
Fields in org.mozilla.javascript.ast with type parameters of type Symbol Modifier and Type Field Description private java.util.List<Symbol>
ScriptNode. symbols
protected java.util.Map<java.lang.String,Symbol>
Scope. symbolTable
Methods in org.mozilla.javascript.ast that return Symbol Modifier and Type Method Description Symbol
Scope. getSymbol(java.lang.String name)
Looks up a symbol in this scope.Methods in org.mozilla.javascript.ast that return types with arguments of type Symbol Modifier and Type Method Description private java.util.Map<java.lang.String,Symbol>
Scope. ensureSymbolTable()
java.util.List<Symbol>
ScriptNode. getSymbols()
java.util.Map<java.lang.String,Symbol>
Scope. getSymbolTable()
Returns the symbol table for this scope.Methods in org.mozilla.javascript.ast with parameters of type Symbol Modifier and Type Method Description (package private) void
ScriptNode. addSymbol(Symbol symbol)
void
Scope. putSymbol(Symbol symbol)
Enters a symbol into this scope.Method parameters in org.mozilla.javascript.ast with type arguments of type Symbol Modifier and Type Method Description void
ScriptNode. setSymbols(java.util.List<Symbol> symbols)
void
Scope. setSymbolTable(java.util.Map<java.lang.String,Symbol> table)
Sets the symbol table for this scope.
-