|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectpolyglot.ast.Node_c
polyglot.ast.Term_c
polyglot.ast.Expr_c
polyglot.ast.Local_c
public class Local_c
A local variable expression.
| Field Summary | |
|---|---|
protected LocalInstance |
li
|
protected Id |
name
|
| Fields inherited from class polyglot.ast.Expr_c |
|---|
type |
| Fields inherited from class polyglot.ast.Term_c |
|---|
exceptions, reachable |
| Fields inherited from class polyglot.ast.Node_c |
|---|
del, error, ext, position |
| Fields inherited from interface polyglot.ast.Term |
|---|
ENTRY, EXIT |
| Constructor Summary | |
|---|---|
Local_c(Position pos,
Id name)
|
|
| Method Summary | |
|---|---|
java.util.List |
acceptCFG(CFGBuilder v,
java.util.List succs)
Visit this term in evaluation order. |
Node |
buildTypes(TypeBuilder tb)
Collects classes, methods, and fields from the AST rooted at this node and constructs type objects for these. |
java.lang.Object |
constantValue()
Returns the constant value of the expression, if any. |
boolean |
constantValueSet()
|
Node |
copy(NodeFactory nf)
Produce a copy of this node using the given NodeFactory. |
void |
dump(CodeWriter w)
Dumps the AST. |
Term |
firstChild()
Return the first direct subterm performed when evaluating this term. |
Flags |
flags()
Return the access flags of the variable. |
Id |
id()
Get the name of the local. |
Local |
id(Id name)
Set the name of the local. |
boolean |
isConstant()
Return whether the expression evaluates to a constant. |
LocalInstance |
localInstance()
Get the local instance of the local. |
Local |
localInstance(LocalInstance li)
Set the local instance of the local. |
java.lang.String |
name()
Get the name of the local. |
Local |
name(java.lang.String name)
Set the name of the local. |
Precedence |
precedence()
Get the precedence of the local. |
void |
prettyPrint(CodeWriter w,
PrettyPrinter tr)
Write the local to an output file. |
protected Local_c |
reconstruct(Id name)
Reconstruct the expression. |
java.lang.String |
toString()
|
Node |
typeCheck(TypeChecker tc)
Type check the local. |
VarInstance |
varInstance()
Get the local instance of the local. |
Node |
visitChildren(NodeVisitor v)
Visit the children of the constructor. |
| Methods inherited from class polyglot.ast.Expr_c |
|---|
booleanValue, byteValue, charValue, doubleValue, floatValue, intValue, isTypeChecked, longValue, printSubExpr, printSubExpr, shortValue, stringValue, type, type |
| Methods inherited from class polyglot.ast.Term_c |
|---|
exceptionCheck, exceptions, exceptions, listChild, reachable, reachable |
| Methods inherited from class polyglot.ast.Node_c |
|---|
addDecls, buildTypesEnter, checkConstants, childExpectedType, copy, copy, del, del, disambiguate, disambiguateEnter, disambiguateOverride, dump, dump, enterChildScope, enterScope, error, error, exceptionCheckEnter, ext, ext, ext, ext, init, isDisambiguated, node, position, position, prettyPrint, prettyPrint, print, printBlock, printSubStmt, throwTypes, translate, typeCheckEnter, typeCheckOverride, visit, visitChild, visitEdge, visitList |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface polyglot.ast.Expr |
|---|
printSubExpr, printSubExpr, type |
| Methods inherited from interface polyglot.ast.Node |
|---|
childExpectedType, del, del, error, error, ext, ext, ext, ext, isDisambiguated, isTypeChecked, position, position, visit, visitChild, visitEdge, visitList |
| Methods inherited from interface polyglot.ast.JL |
|---|
init, node |
| Methods inherited from interface polyglot.ast.NodeOps |
|---|
addDecls, buildTypesEnter, checkConstants, copy, disambiguate, disambiguateEnter, disambiguateOverride, dump, dump, enterChildScope, enterScope, exceptionCheck, exceptionCheckEnter, prettyPrint, prettyPrint, throwTypes, translate, typeCheckEnter, typeCheckOverride |
| Methods inherited from interface polyglot.util.Copy |
|---|
copy |
| Methods inherited from interface polyglot.ast.Typed |
|---|
type |
| Methods inherited from interface polyglot.ast.Term |
|---|
exceptions, exceptions, reachable, reachable |
| Field Detail |
|---|
protected Id name
protected LocalInstance li
| Constructor Detail |
|---|
public Local_c(Position pos,
Id name)
| Method Detail |
|---|
public Precedence precedence()
precedence in interface Exprprecedence in class Expr_cpublic Id id()
id in interface Localpublic Local id(Id name)
id in interface Localpublic java.lang.String name()
name in interface Localname in interface NamedVariablepublic Local name(java.lang.String name)
name in interface Localpublic Flags flags()
flags in interface NamedVariableflags in interface Variablepublic VarInstance varInstance()
varInstance in interface NamedVariablepublic LocalInstance localInstance()
localInstance in interface Localpublic Local localInstance(LocalInstance li)
localInstance in interface Localprotected Local_c reconstruct(Id name)
public Node visitChildren(NodeVisitor v)
visitChildren in interface NodeOpsvisitChildren in class Node_cv - The visitor that will traverse/rewrite the AST.
this.
public Node buildTypes(TypeBuilder tb)
throws SemanticException
NodeOpsTypeSystem.
This method is called by the leave() method of the
visitor. The method should perform work that should be done
after visiting the children of the node. The method may return
this or a new copy of the node which will be
installed as a child of the node's parent.
buildTypes in interface NodeOpsbuildTypes in class Expr_ctb - The visitor which adds new type objects to the
TypeSystem.
SemanticException
public Node typeCheck(TypeChecker tc)
throws SemanticException
typeCheck in interface NodeOpstypeCheck in class Node_ctc - The type checking visitor.
SemanticExceptionpublic Term firstChild()
Term
firstChild in interface Term
public java.util.List acceptCFG(CFGBuilder v,
java.util.List succs)
Term_c
acceptCFG in interface TermacceptCFG in class Term_cpublic java.lang.String toString()
toString in class Node_c
public void prettyPrint(CodeWriter w,
PrettyPrinter tr)
prettyPrint in interface NodeOpsprettyPrint in class Node_cw - The code writer to which to write.tr - The pretty printer. This is not a visitor.public void dump(CodeWriter w)
dump in interface Nodedump in class Expr_cpublic boolean constantValueSet()
constantValueSet in interface ExprconstantValueSet in class Expr_cpublic boolean isConstant()
Expr
isConstant in interface ExprisConstant in class Expr_cpublic java.lang.Object constantValue()
Expr
constantValue in interface ExprconstantValue in class Expr_cpublic Node copy(NodeFactory nf)
NodeOps
copy in interface NodeOpscopy in class Node_c
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||