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 |
getClosestContainerScope()
Returns the closest container 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 |
hasOwnSlot(java.lang.String name)
Returns true if a variable is declared in this scope, with no recursion.
|
boolean |
hasSlot(java.lang.String name)
Returns true if a variable is declared in this or any parent scope.
|
boolean |
isBlockScope() |
boolean |
isCatchScope() |
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 hasOwnSlot(java.lang.String name)
public final boolean hasSlot(java.lang.String name)
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()
For function scopes, we return back the scope itself, since even though there is no way to declare a var inside function parameters, it would make even less sense to say that such declarations would be "hoisted" somewhere else.
public final S getClosestContainerScope()
Copyright © 2009-2018 Google. All Rights Reserved.