public abstract class Scope
extends java.lang.Object
NodeTraversal
,
Serialized FormModifier and Type | Method and Description |
---|---|
java.lang.Iterable<V> |
getAllAccessibleVariables()
Return an iterable over all of the variables accessible to this scope (i.e.
|
java.lang.Iterable<V> |
getAllSymbols() |
V |
getArgumentsVar()
Get a unique VAR object to represent "arguments" within this scope
|
S |
getClosestHoistScope()
If a var were declared in this scope, return the scope it would be hoisted to.
|
abstract int |
getDepth()
The depth of the scope.
|
V |
getOwnSlot(java.lang.String name)
Like
getSlot but does not recurse into parent scopes. |
abstract S |
getParent()
Returns the parent scope, or null if this is the global scope.
|
S |
getParentScope()
Returns the scope enclosing this one or null if none.
|
Node |
getRootNode()
Gets the container node of the scope.
|
V |
getSlot(java.lang.String name)
Returns any defined slot within this scope for this name.
|
V |
getVar(java.lang.String name)
Returns the variable, may be null
|
int |
getVarCount()
Returns number of variables in this scope (excluding the special 'arguments' variable)
|
java.lang.Iterable<V> |
getVarIterable()
Return an iterable over all of the variables declared in this scope
(except the special 'arguments' variable).
|
boolean |
isBlockScope() |
boolean |
isCatchScope() |
boolean |
isDeclared(java.lang.String name,
boolean recurse)
Returns true if a variable is declared.
|
boolean |
isDeclaredInFunctionBlockOrParameter(java.lang.String name)
Use only when in a function block scope and want to tell if a name is either at the top of the
function block scope or the function parameter scope.
|
boolean |
isFunctionBlockScope() |
boolean |
isFunctionScope() |
boolean |
isGlobal()
Returns whether this is the global scope.
|
boolean |
isLocal()
Returns whether this is a local scope (i.e.
|
boolean |
isModuleScope() |
java.lang.String |
toString() |
TypedScope |
typed() |
Scope |
untyped() |
public Scope untyped()
public abstract int getDepth()
public abstract S getParent()
public final java.lang.String toString()
toString
in class java.lang.Object
public TypedScope typed()
public Node getRootNode()
getRootNode
in interface StaticScope
public final S getParentScope()
StaticScope
getParentScope
in interface StaticScope
public final V getSlot(java.lang.String name)
StaticScope
getSlot
in interface StaticScope
name
- The name of the variable slot to look up.null
if no
definition exists.public final V getOwnSlot(java.lang.String name)
StaticScope
getSlot
but does not recurse into parent scopes.getOwnSlot
in interface StaticScope
public V getVar(java.lang.String name)
public final V getArgumentsVar()
public final boolean isDeclaredInFunctionBlockOrParameter(java.lang.String name)
public final boolean isDeclared(java.lang.String name, boolean recurse)
public java.lang.Iterable<V> getVarIterable()
public final java.lang.Iterable<V> getAllAccessibleVariables()
The iterable contains variables from inner scopes before adding variables from outer parent scopes.
We do not include the special 'arguments' variable.
public java.lang.Iterable<V> getAllSymbols()
public int getVarCount()
public boolean isGlobal()
public boolean isLocal()
public final boolean isBlockScope()
public final boolean isFunctionBlockScope()
public final boolean isFunctionScope()
public final boolean isModuleScope()
public final boolean isCatchScope()
public final S getClosestHoistScope()
Copyright © 2009-2018 Google. All Rights Reserved.