public abstract class Ext_c extends java.lang.Object implements Ext
Ext is the super type of all node extension objects.
It contains a pointer back to the node it is extending and a possibly-null
pointer to another extension node.| Modifier and Type | Field and Description |
|---|---|
protected Ext |
ext |
protected Node |
node |
protected NodeOps |
pred |
| Modifier and Type | Method and Description |
|---|---|
void |
addDecls(Context c)
Add any declarations to the context that should be in scope when
visiting later sibling nodes.
|
Node |
buildTypes(TypeBuilder tb)
Collects classes, methods, and fields from the AST rooted at this node
and constructs type objects for these.
|
NodeVisitor |
buildTypesEnter(TypeBuilder tb)
Collects classes, methods, and fields from the AST rooted at this node
and constructs type objects for these.
|
Node |
checkConstants(ConstantChecker cc)
Check if the node is a compile-time constant.
|
Type |
childExpectedType(Expr child,
AscriptionVisitor av)
Get the expected type of a child expression of
this. |
Ext |
copy() |
Node |
copy(ExtensionInfo extInfo)
Produce a copy of this node using the given ExtensionInfo.
|
Node |
copy(NodeFactory nf)
Produce a copy of this node using the given NodeFactory.
|
Node |
disambiguate(AmbiguityRemover ar)
Remove any remaining ambiguities from the AST.
|
NodeVisitor |
disambiguateEnter(AmbiguityRemover ar)
Remove any remaining ambiguities from the AST.
|
Node |
disambiguateOverride(Node parent,
AmbiguityRemover ar)
Disambiguate the AST.
|
void |
dump(CodeWriter w)
Dump the AST node for debugging purposes.
|
void |
dump(Lang lang,
java.io.OutputStream os)
Dump the AST for debugging.
|
void |
dump(Lang lang,
java.io.Writer w)
Dump the AST for debugging.
|
void |
dump(java.io.OutputStream os)
Deprecated.
|
void |
dump(java.io.Writer w)
Deprecated.
|
Context |
enterChildScope(Node child,
Context c)
Push a new scope for visiting the child node
child. |
Context |
enterScope(Context c)
Push a new scope upon entering this node, and add any declarations to the
context that should be in scope when visiting children of this node.
|
Node |
exceptionCheck(ExceptionChecker ec)
Check that exceptions are properly propagated throughout the AST.
|
NodeVisitor |
exceptionCheckEnter(ExceptionChecker ec)
Check that exceptions are properly propagated throughout the AST.
|
Ext |
ext()
An extension of this extension, or null.
|
Ext |
ext(Ext ext)
Set the extension of this extension.
|
Node |
extRewrite(ExtensionRewriter rw)
Rewrite the AST for the compilation in this language.
|
NodeVisitor |
extRewriteEnter(ExtensionRewriter rw)
Rewrite the AST for the compilation in this language.
|
void |
init(Node node)
Initialize the extension object's pointer back to the node.
|
void |
initPred(NodeOps pred)
Initialize the extension object's pointer back to the parent.
|
Lang |
lang()
The language defined by this NodeOps implementation.
|
Node |
node()
The node we ultimately extend.
|
NodeOps |
pred()
The parent of this extension.
|
void |
prettyPrint(CodeWriter w,
PrettyPrinter pp)
Pretty-print the AST using the given
CodeWriter. |
void |
prettyPrint(Lang lang,
java.io.OutputStream os)
Pretty-print the AST for debugging.
|
void |
prettyPrint(Lang lang,
java.io.Writer w)
Pretty-print the AST for debugging.
|
void |
prettyPrint(java.io.OutputStream os)
Deprecated.
|
void |
prettyPrint(java.io.Writer w)
Deprecated.
|
void |
print(Node child,
CodeWriter w,
PrettyPrinter pp) |
void |
printBlock(Node n,
CodeWriter w,
PrettyPrinter pp) |
void |
printSubStmt(Stmt stmt,
CodeWriter w,
PrettyPrinter pp) |
protected JLang |
superLang() |
java.util.List<Type> |
throwTypes(TypeSystem ts)
List of Types of exceptions that might get thrown.
|
java.lang.String |
toString() |
void |
translate(CodeWriter w,
Translator tr)
Translate the AST using the given
CodeWriter. |
Node |
typeCheck(TypeChecker tc)
Type check the AST.
|
NodeVisitor |
typeCheckEnter(TypeChecker tc)
Type check the AST.
|
Node |
typeCheckOverride(Node parent,
TypeChecker tc)
Type check the AST.
|
<N extends Node> |
visitChild(N child,
NodeVisitor v)
Visit a single child of the node.
|
Node |
visitChildren(NodeVisitor v)
Visit the children of the node.
|
<N extends Node> |
visitList(java.util.List<N> l,
NodeVisitor v)
Visit all the elements of a list.
|
public Ext_c()
public Ext_c(Ext ext)
public Lang lang()
NodeOpsprotected final JLang superLang()
public <N extends Node> N visitChild(N child, NodeVisitor v)
NodeOpsvisitChild in interface NodeOpschild - The child to visit.v - The visitor which will traverse/rewrite the AST.child.visit(v), or null
if child was null.public <N extends Node> java.util.List<N> visitList(java.util.List<N> l, NodeVisitor v)
NodeOpspublic void init(Node node)
Extpublic void initPred(NodeOps pred)
Extpublic Ext ext()
Extpublic Ext ext(Ext ext)
Extpublic java.lang.String toString()
toString in class java.lang.Objectpublic void dump(CodeWriter w)
Extpublic Node visitChildren(NodeVisitor v)
NodeOpsvisitChildren in interface NodeOpsv - The visitor that will traverse/rewrite the AST.this.public Context enterScope(Context c)
NodeOpsaddDecls when leaving the node
for that.enterScope in interface NodeOpsc - the current ContextContext to be used for visiting this node.public Context enterChildScope(Node child, Context c)
NodeOpschild.
The default behavior is to delegate the call to the child node, and let
it add appropriate declarations that should be in scope. However,
this method gives parent nodes have the ability to modify this behavior.enterChildScope in interface NodeOpschild - the child node about to be entered.c - the current ContextContext to be used for visiting node
childpublic void addDecls(Context c)
NodeOpspublic NodeVisitor buildTypesEnter(TypeBuilder tb) throws SemanticException
NodeOpsTypeSystem.
This method is called by the enter() method of the
visitor. The * method should perform work that should be done
before visiting the children of the node. The method may return
this or a new copy of the node on which
visitChildren() and leave() will be
invoked.buildTypesEnter in interface NodeOpstb - The visitor which adds new type objects to the
TypeSystem.SemanticExceptionpublic 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 NodeOpstb - The visitor which adds new type objects to the
TypeSystem.SemanticExceptionpublic Node disambiguateOverride(Node parent, AmbiguityRemover ar) throws SemanticException
NodeOpsoverride() method of the
visitor. If this method returns non-null, the node's children
will not be visited automatically. Thus, the method should check
both the node this and it's children, usually by
invoking visitChildren with tc or
with another visitor, returning a non-null node. OR, the method
should do nothing and simply return null to allow
enter, visitChildren, and leave
to be invoked on the node.
The default implementation returns null.
Overriding of this method is discouraged, but sometimes necessary.disambiguateOverride in interface NodeOpsar - The visitor which disambiguates.SemanticExceptionpublic NodeVisitor disambiguateEnter(AmbiguityRemover ar) throws SemanticException
NodeOpsenter() method of the
visitor. The * method should perform work that should be done
before visiting the children of the node. The method may return
this or a new copy of the node on which
visitChildren() and leave() will be
invoked.disambiguateEnter in interface NodeOpsar - The visitor which disambiguates.SemanticExceptionpublic Node disambiguate(AmbiguityRemover ar) 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 NodeOpsar - The visitor which disambiguates.SemanticExceptionpublic Node typeCheckOverride(Node parent, TypeChecker tc) throws SemanticException
NodeOpsoverride() method of the
visitor. If this method returns non-null, the node's children
will not be visited automatically. Thus, the method should check
both the node this and it's children, usually by
invoking visitChildren with tc or
with another visitor, returning a non-null node. OR, the method
should do nothing and simply return null to allow
enter, visitChildren, and leave
to be invoked on the node.
The default implementation returns null.
Overriding of this method is discouraged, but sometimes necessary.typeCheckOverride in interface NodeOpstc - The type checking visitor.SemanticExceptionpublic NodeVisitor typeCheckEnter(TypeChecker tc) throws SemanticException
NodeOpsenter() method of the
visitor. The * method should perform work that should be done
before visiting the children of the node. The method may return
this or a new copy of the node on which
visitChildren() and leave() will be
invoked.typeCheckEnter in interface NodeOpstc - The type checking visitor.SemanticExceptionpublic 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 NodeOpstc - The type checking visitor.SemanticExceptionpublic Type childExpectedType(Expr child, AscriptionVisitor av)
NodeOpsthis.
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 NodeOpschild - A child expression of this node.av - An ascription visitor.child.public Node checkConstants(ConstantChecker cc) 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.checkConstants in interface NodeOpscc - The constant checking visitor.SemanticExceptionpublic NodeVisitor exceptionCheckEnter(ExceptionChecker ec) throws SemanticException
NodeOpsenter() method of the
visitor. The * method should perform work that should be done
before visiting the children of the node. The method may return
this or a new copy of the node on which
visitChildren() and leave() will be
invoked.exceptionCheckEnter in interface NodeOpsec - The visitor.SemanticExceptionpublic 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 NodeOpsec - The visitor.SemanticExceptionpublic java.util.List<Type> throwTypes(TypeSystem ts)
NodeOpsthrowTypes in interface NodeOpspublic NodeVisitor extRewriteEnter(ExtensionRewriter rw) throws SemanticException
NodeOpsenter() method of the
visitor. The method should perform work that should be done
before visiting the children of the node. The method may return
this or a new copy of the node on which
visitChildren() and leave() will be
invoked.extRewriteEnter in interface NodeOpsrw - The visitor.SemanticExceptionpublic Node extRewrite(ExtensionRewriter rw) 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.extRewrite in interface NodeOpsrw - The visitor.SemanticException@Deprecated public void dump(java.io.OutputStream os)
NodeOpspublic void dump(Lang lang, java.io.OutputStream os)
NodeOps@Deprecated public void dump(java.io.Writer w)
NodeOpspublic void dump(Lang lang, java.io.Writer w)
NodeOps@Deprecated public void prettyPrint(java.io.OutputStream os)
NodeOpsprettyPrint in interface NodeOpspublic void prettyPrint(Lang lang, java.io.OutputStream os)
NodeOpsprettyPrint in interface NodeOps@Deprecated public void prettyPrint(java.io.Writer w)
NodeOpsprettyPrint in interface NodeOpspublic void prettyPrint(Lang lang, java.io.Writer w)
NodeOpsprettyPrint in interface NodeOpspublic void prettyPrint(CodeWriter w, PrettyPrinter pp)
NodeOpsCodeWriter.prettyPrint in interface NodeOpsw - The code writer to which to write.pp - The pretty printer. This is not a visitor.public void print(Node child, CodeWriter w, PrettyPrinter pp)
public void printBlock(Node n, CodeWriter w, PrettyPrinter pp)
public void printSubStmt(Stmt stmt, CodeWriter w, PrettyPrinter pp)
public void translate(CodeWriter w, Translator tr)
NodeOpsCodeWriter.public Node copy(NodeFactory nf)
NodeOpspublic Node copy(ExtensionInfo extInfo) throws SemanticException
NodeOpscopy in interface NodeOpsSemanticException - If the type information cannot be copied.