Uses of Class
org.codehaus.groovy.ast.VariableScope

Packages that use VariableScope
org.codehaus.groovy.ast Groovy AST nodes for the syntax of the language 
org.codehaus.groovy.ast.expr AST nodes for Groovy expressions 
org.codehaus.groovy.classgen Generates Java classes for Groovy classes using ASM. 
 

Uses of VariableScope in org.codehaus.groovy.ast
 

Fields in org.codehaus.groovy.ast declared as VariableScope
private  VariableScope VariableScope.parent
           
private  VariableScope MethodNode.variableScope
           
private  VariableScope ConstructorNode.variableScope
           
 

Methods in org.codehaus.groovy.ast that return VariableScope
 VariableScope VariableScope.createCompositeChildScope()
          Creates a composite variable scope combining all the variable references and declarations from all the child scopes not including this scope
 VariableScope VariableScope.createRecursiveChildScope()
          Creates a scope including this scope and all nested scopes combined together
 VariableScope VariableScope.createRecursiveParentScope()
          Creates a scope including this scope and all parent scopes combined together
 VariableScope MethodNode.getVariableScope()
           
 VariableScope ConstructorNode.getVariableScope()
           
 

Methods in org.codehaus.groovy.ast with parameters of type VariableScope
protected  void VariableScope.append(VariableScope scope)
          Appends all of the references and declarations from the given scope to this one
protected  void VariableScope.appendRecursive(VariableScope scope)
          Appends all of the references and declarations from the given scope and all its children to this one
 void MethodNode.setVariableScope(VariableScope variableScope)
           
 void ConstructorNode.setVariableScope(VariableScope variableScope)
           
 

Constructors in org.codehaus.groovy.ast with parameters of type VariableScope
VariableScope(VariableScope parent)
           
 

Uses of VariableScope in org.codehaus.groovy.ast.expr
 

Fields in org.codehaus.groovy.ast.expr declared as VariableScope
private  VariableScope ClosureExpression.variableScope
           
 

Methods in org.codehaus.groovy.ast.expr that return VariableScope
 VariableScope ClosureExpression.getVariableScope()
           
 

Methods in org.codehaus.groovy.ast.expr with parameters of type VariableScope
 void ClosureExpression.setVariableScope(VariableScope variableScope)
           
 

Uses of VariableScope in org.codehaus.groovy.classgen
 

Fields in org.codehaus.groovy.classgen declared as VariableScope
private  VariableScope VariableScopeCodeVisitor.scope
           
private  VariableScope AsmClassGenerator.variableScope
           
 

Methods in org.codehaus.groovy.classgen that return VariableScope
protected  VariableScope AsmClassGenerator.getVariableScope()
           
 

Methods in org.codehaus.groovy.classgen with parameters of type VariableScope
protected  void AsmClassGenerator.addFieldsToVisitor(VariableScope scope)
           
 

Constructors in org.codehaus.groovy.classgen with parameters of type VariableScope
VariableScopeCodeVisitor(VariableScope scope)
           
 



Copyright © 2003-2005 The Codehaus. All Rights Reserved.