public class MethodScope extends AbstractJavaScope
Constructor and Description |
---|
MethodScope(Node node) |
Modifier and Type | Method and Description |
---|---|
void |
addDeclaration(NameDeclaration variableDecl)
Adds a new declaration to this scope.
|
NameDeclaration |
addNameOccurrence(NameOccurrence occurrence)
Adds a
NameOccurrence to this scope - only call this after getting
a true back from Scope.contains(NameOccurrence) . |
NameDeclaration |
findVariableHere(JavaNameOccurrence occurrence) |
String |
getName() |
Map<VariableNameDeclaration,List<NameOccurrence>> |
getVariableDeclarations() |
String |
toString() |
checkForDuplicatedNameDeclaration, contains, glomNames
getDeclarations, getDeclarations, getEnclosingScope, getParent, setParent
public MethodScope(Node node)
public Map<VariableNameDeclaration,List<NameOccurrence>> getVariableDeclarations()
public NameDeclaration addNameOccurrence(NameOccurrence occurrence)
Scope
NameOccurrence
to this scope - only call this after getting
a true back from Scope.contains(NameOccurrence)
.addNameOccurrence
in interface Scope
addNameOccurrence
in class AbstractScope
NameDeclaration
that is references by the given NameOccurrence
,
if the NameOccurrence
could be added. Otherwise null
is returned.public void addDeclaration(NameDeclaration variableDecl)
Scope
Scope.contains(NameOccurrence)
and Scope.addNameOccurrence(NameOccurrence)
can
be used correctly.addDeclaration
in interface Scope
addDeclaration
in class AbstractJavaScope
variableDecl
- the declaration to addpublic NameDeclaration findVariableHere(JavaNameOccurrence occurrence)
findVariableHere
in class AbstractJavaScope
public String getName()
Copyright © 2002–2017 InfoEther. All rights reserved.