Uses of Class
org.eclipse.jdt.internal.compiler.lookup.MethodScope

Packages that use MethodScope
org.eclipse.jdt.internal.compiler   
org.eclipse.jdt.internal.compiler.ast   
org.eclipse.jdt.internal.compiler.lookup   
 

Uses of MethodScope in org.eclipse.jdt.internal.compiler
 

Methods in org.eclipse.jdt.internal.compiler with parameters of type MethodScope
 void ASTVisitor.endVisit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 void ASTVisitor.endVisit(Initializer initializer, MethodScope scope)
           
 boolean ASTVisitor.visit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 boolean ASTVisitor.visit(Initializer initializer, MethodScope scope)
           
 

Uses of MethodScope in org.eclipse.jdt.internal.compiler.ast
 

Fields in org.eclipse.jdt.internal.compiler.ast declared as MethodScope
 MethodScope TypeDeclaration.initializerScope
           
 MethodScope LambdaExpression.scope
           
 MethodScope AbstractMethodDeclaration.scope
           
 MethodScope TypeDeclaration.staticInitializerScope
           
 

Methods in org.eclipse.jdt.internal.compiler.ast that return MethodScope
 MethodScope LambdaExpression.getScope()
           
 

Methods in org.eclipse.jdt.internal.compiler.ast with parameters of type MethodScope
 FlowInfo FieldDeclaration.analyseCode(MethodScope initializationScope, FlowContext flowContext, FlowInfo flowInfo)
           
 FlowInfo Initializer.analyseCode(MethodScope currentScope, FlowContext flowContext, FlowInfo flowInfo)
           
 TypeBinding Argument.bind(MethodScope scope, TypeBinding typeBinding, boolean used)
           
 TypeBinding Argument.createBinding(MethodScope scope, TypeBinding typeBinding)
           
 void ConstructorDeclaration.generateSyntheticFieldInitializationsIfNecessary(MethodScope methodScope, CodeStream codeStream, ReferenceBinding declaringClass)
           
 void FieldDeclaration.resolve(MethodScope initializationScope)
           
 void Initializer.resolve(MethodScope scope)
           
 void Javadoc.resolve(MethodScope methScope)
           
 void FieldDeclaration.traverse(ASTVisitor visitor, MethodScope scope)
           
 void Initializer.traverse(ASTVisitor visitor, MethodScope scope)
           
 

Uses of MethodScope in org.eclipse.jdt.internal.compiler.lookup
 

Methods in org.eclipse.jdt.internal.compiler.lookup that return MethodScope
 MethodScope Scope.enclosingLambdaScope()
           
 MethodScope Scope.enclosingMethodScope()
           
 MethodScope Scope.methodScope()
           
 MethodScope Scope.namedMethodScope()
           
 MethodScope Scope.outerMostMethodScope()
           
 

Constructors in org.eclipse.jdt.internal.compiler.lookup with parameters of type MethodScope
LocalVariableBinding(LocalDeclaration declaration, TypeBinding type, int modifiers, MethodScope declaringScope)