|
|||||||||
| 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.TypeNode_c
polyglot.ast.AmbTypeNode_c
public class AmbTypeNode_c
An AmbTypeNode is an ambiguous AST node composed of
dot-separated list of identifiers that must resolve to a type.
| Field Summary | |
|---|---|
protected Id |
name
|
protected QualifierNode |
qual
|
| Fields inherited from class polyglot.ast.TypeNode_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 | |
|---|---|
AmbTypeNode_c(Position pos,
QualifierNode qual,
Id name)
|
|
| Method Summary | |
|---|---|
Node |
buildTypes(TypeBuilder tb)
Collects classes, methods, and fields from the AST rooted at this node and constructs type objects for these. |
Node |
copy(NodeFactory nf)
Produce a copy of this node using the given NodeFactory. |
Node |
disambiguate(AmbiguityRemover sc)
Remove any remaining ambiguities from the AST. |
Node |
exceptionCheck(ExceptionChecker ec)
Check that exceptions are properly propagated throughout the AST. |
Id |
id()
Ambiguous name. |
AmbTypeNode |
id(Id name)
Set the ambiguous name. |
java.lang.String |
name()
Short name of the type, or null if not a Named type. |
AmbTypeNode |
name(java.lang.String name)
Set the ambiguous name. |
void |
prettyPrint(CodeWriter w,
PrettyPrinter tr)
Pretty-print the AST using the given CodeWriter. |
QualifierNode |
qual()
Qualifier of the type. |
AmbTypeNode |
qual(QualifierNode qual)
Set the qualifier of the type. |
protected AmbTypeNode_c |
reconstruct(QualifierNode qual,
Id name)
|
java.lang.String |
toString()
|
Node |
typeCheck(TypeChecker tc)
Type check the AST. |
Node |
visitChildren(NodeVisitor v)
Visit the children of the node. |
| Methods inherited from class polyglot.ast.TypeNode_c |
|---|
acceptCFG, firstChild, isDisambiguated, qualifier, type, type |
| Methods inherited from class polyglot.ast.Term_c |
|---|
exceptions, exceptions, listChild, reachable, reachable |
| Methods inherited from class polyglot.ast.Node_c |
|---|
addDecls, buildTypesEnter, checkConstants, childExpectedType, copy, copy, del, del, disambiguateEnter, disambiguateOverride, dump, dump, dump, enterChildScope, enterScope, error, error, exceptionCheckEnter, ext, ext, ext, ext, init, isTypeChecked, 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.TypeNode |
|---|
type |
| Methods inherited from interface polyglot.ast.Node |
|---|
childExpectedType, del, del, dump, 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, disambiguateEnter, disambiguateOverride, dump, dump, enterChildScope, enterScope, exceptionCheckEnter, prettyPrint, prettyPrint, throwTypes, translate, typeCheckEnter, typeCheckOverride |
| Methods inherited from interface polyglot.ast.Typed |
|---|
type |
| Methods inherited from interface polyglot.ast.QualifierNode |
|---|
qualifier |
| Methods inherited from interface polyglot.ast.Node |
|---|
childExpectedType, del, del, dump, 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, disambiguateEnter, disambiguateOverride, dump, dump, enterChildScope, enterScope, exceptionCheckEnter, prettyPrint, prettyPrint, throwTypes, translate, typeCheckEnter, typeCheckOverride |
| Methods inherited from interface polyglot.ast.Term |
|---|
acceptCFG, exceptions, exceptions, firstChild, reachable, reachable |
| Field Detail |
|---|
protected QualifierNode qual
protected Id name
| Constructor Detail |
|---|
public AmbTypeNode_c(Position pos,
QualifierNode qual,
Id name)
| Method Detail |
|---|
public Id id()
AmbTypeNode
id in interface AmbTypeNodepublic AmbTypeNode id(Id name)
AmbTypeNode
id in interface AmbTypeNodepublic java.lang.String name()
TypeNodeNamed type.
name in interface AmbTypeNodename in interface TypeNodename in class TypeNode_cpublic AmbTypeNode name(java.lang.String name)
AmbTypeNode
name in interface AmbTypeNodepublic QualifierNode qual()
AmbTypeNode
qual in interface AmbTypeNodepublic AmbTypeNode qual(QualifierNode qual)
AmbTypeNode
qual in interface AmbTypeNode
protected AmbTypeNode_c reconstruct(QualifierNode qual,
Id name)
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 TypeNode_ctb - The visitor which adds new type objects to the
TypeSystem.
SemanticExceptionpublic Node visitChildren(NodeVisitor v)
NodeOps
visitChildren in interface NodeOpsvisitChildren in class Node_cv - The visitor that will traverse/rewrite the AST.
this.
public Node disambiguate(AmbiguityRemover sc)
throws SemanticException
NodeOpsleave() 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.
The node should not assume that its children have been disambiguated.
If it depends on a child being disambiguated,
it may just return this without doing any work.
disambiguate in interface NodeOpsdisambiguate in class Node_csc - The visitor which disambiguates.
SemanticException
public Node typeCheck(TypeChecker tc)
throws SemanticException
NodeOpsleave() 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.
typeCheck in interface NodeOpstypeCheck in class Node_ctc - The type checking visitor.
SemanticException
public Node exceptionCheck(ExceptionChecker ec)
throws SemanticException
NodeOpsleave() 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.
exceptionCheck in interface NodeOpsexceptionCheck in class Term_cec - The visitor.
SemanticException
public void prettyPrint(CodeWriter w,
PrettyPrinter tr)
Node_cCodeWriter.
prettyPrint in interface NodeOpsprettyPrint in class TypeNode_cw - The code writer to which to write.tr - The pretty printer. This is not a visitor.public java.lang.String toString()
toString in class TypeNode_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 | ||||||||