|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object polyglot.ext.jl.ast.Node_c polyglot.ext.jl.ast.Term_c polyglot.ext.jl.ast.Expr_c polyglot.ext.jl.ast.Field_c
public class Field_c
A Field
is an immutable representation of a Java field
access. It consists of field name and may also have either a
Type
or an Expr
containing the field being
accessed.
Field Summary | |
---|---|
protected FieldInstance |
fi
|
protected java.lang.String |
name
|
protected Receiver |
target
|
protected boolean |
targetImplicit
|
Fields inherited from class polyglot.ext.jl.ast.Expr_c |
---|
type |
Fields inherited from class polyglot.ext.jl.ast.Term_c |
---|
exceptions, reachable |
Fields inherited from class polyglot.ext.jl.ast.Node_c |
---|
del, ext, position |
Constructor Summary | |
---|---|
Field_c(Position pos,
Receiver target,
java.lang.String 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. |
protected void |
checkConsistency(Context c)
|
Type |
childExpectedType(Expr child,
AscriptionVisitor av)
Get the expected type of a child expression of this . |
java.lang.Object |
constantValue()
Returns the constant value of the expression, if any. |
void |
dump(CodeWriter w)
Dump the AST node for debugging purposes. |
Term |
entry()
Return the first (sub)term performed when evaluating this term. |
FieldInstance |
fieldInstance()
Get the field instance of the field. |
Field |
fieldInstance(FieldInstance fi)
Set the field instance of the field. |
Flags |
flags()
Return the access flags of the variable. |
boolean |
isConstant()
Return whether the expression evaluates to a constant. |
boolean |
isTargetImplicit()
Returns whether the target of this field is implicit, that is if the target is either "this" or a classname, and the source code did not explicitly provide a target. |
java.lang.String |
name()
Get the name of the field. |
Field |
name(java.lang.String name)
Set the name of the field. |
Precedence |
precedence()
Get the precedence of the field. |
void |
prettyPrint(CodeWriter w,
PrettyPrinter tr)
Write the field to an output file. |
protected Field_c |
reconstruct(Receiver target)
Reconstruct the field. |
Receiver |
target()
Get the target of the field. |
Field |
target(Receiver target)
Set the target of the field. |
Field |
targetImplicit(boolean implicit)
Set whether the target of the field is implicit. |
java.util.List |
throwTypes(TypeSystem ts)
List of Types of exceptions that might get thrown. |
java.lang.String |
toString()
|
Node |
typeCheck(TypeChecker tc)
Type check the field. |
Node |
visitChildren(NodeVisitor v)
Visit the children of the field. |
Methods inherited from class polyglot.ext.jl.ast.Expr_c |
---|
booleanValue, byteValue, charValue, doubleValue, floatValue, intValue, longValue, printSubExpr, printSubExpr, shortValue, stringValue, type, type |
Methods inherited from class polyglot.ext.jl.ast.Term_c |
---|
exceptionCheck, exceptions, exceptions, listEntry, reachable, reachable |
Methods inherited from class polyglot.ext.jl.ast.Node_c |
---|
addDecls, addMembers, addMembersEnter, addMembersOverride, buildTypesEnter, buildTypesOverride, copy, del, del, disambiguate, disambiguateEnter, disambiguateOverride, enterScope, enterScope, exceptionCheckEnter, exceptionCheckOverride, ext, ext, ext, ext, init, node, position, position, print, printBlock, printSubStmt, 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 |
---|
del, del, ext, ext, ext, ext, position, position, visit, visitChild, visitEdge, visitList |
Methods inherited from interface polyglot.ast.JL |
---|
init, node |
Methods inherited from interface polyglot.ast.NodeOps |
---|
addDecls, addMembers, addMembersEnter, buildTypesEnter, disambiguate, disambiguateEnter, enterScope, enterScope, exceptionCheck, exceptionCheckEnter, translate, typeCheckEnter |
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 Receiver target
protected java.lang.String name
protected FieldInstance fi
protected boolean targetImplicit
Constructor Detail |
---|
public Field_c(Position pos, Receiver target, java.lang.String name)
Method Detail |
---|
public Precedence precedence()
precedence
in interface Expr
precedence
in class Expr_c
public Receiver target()
target
in interface Field
public Field target(Receiver target)
target
in interface Field
public java.lang.String name()
name
in interface Field
public Field name(java.lang.String name)
name
in interface Field
public Flags flags()
flags
in interface Variable
public FieldInstance fieldInstance()
fieldInstance
in interface Field
public Field fieldInstance(FieldInstance fi)
fieldInstance
in interface Field
public boolean isTargetImplicit()
Field
isTargetImplicit
in interface Field
public Field targetImplicit(boolean implicit)
Field
targetImplicit
in interface Field
protected Field_c reconstruct(Receiver target)
public Node visitChildren(NodeVisitor v)
visitChildren
in interface NodeOps
visitChildren
in class Node_c
v
- The visitor that will traverse/rewrite the AST.
this
.public Node buildTypes(TypeBuilder tb) throws SemanticException
NodeOps
TypeSystem
.
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 NodeOps
buildTypes
in class Expr_c
tb
- The visitor which adds new type objects to the
TypeSystem
.
SemanticException
public Node typeCheck(TypeChecker tc) throws SemanticException
typeCheck
in interface NodeOps
typeCheck
in class Node_c
tc
- The type checking visitor.
SemanticException
public Type childExpectedType(Expr child, AscriptionVisitor av)
Node
this
.
The expected type is determined by the context in that the child occurs
(e.g., for x = e
, the expected type of e
is
the declared type of x
.
The expected type should impose the least constraints on the child's
type that are allowed by the parent node.
childExpectedType
in interface Node
childExpectedType
in class Node_c
child
- A child expression of this node.av
- An ascription visitor.
child
.public void prettyPrint(CodeWriter w, PrettyPrinter tr)
prettyPrint
in interface NodeOps
prettyPrint
in class Node_c
w
- The code writer to which to write.tr
- The pretty printer. This is not a visitor.public void dump(CodeWriter w)
Node
dump
in interface Node
dump
in class Expr_c
public Term entry()
Term_c
entry
in interface Term
entry
in class Term_c
public java.util.List acceptCFG(CFGBuilder v, java.util.List succs)
Term_c
acceptCFG
in interface Term
acceptCFG
in class Term_c
public java.lang.String toString()
toString
in class Node_c
public java.util.List throwTypes(TypeSystem ts)
NodeOps
throwTypes
in interface NodeOps
throwTypes
in class Node_c
public boolean isConstant()
Expr
isConstant
in interface Expr
isConstant
in class Expr_c
public java.lang.Object constantValue()
Expr
constantValue
in interface Expr
constantValue
in class Expr_c
protected void checkConsistency(Context c)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |