JavaPatternMatching/src/mycompiler/SyntaxTreeNode.java

39 lines
984 B
Java
Raw Normal View History

2014-02-11 01:47:39 +00:00
package mycompiler;
import java.util.Vector;
2014-02-19 04:20:54 +00:00
import typinferenz.TypinferenzException;
import mycompiler.myclass.Class;
2014-02-12 01:12:12 +00:00
public abstract class SyntaxTreeNode {
2014-02-19 04:20:54 +00:00
protected SyntaxTreeNode parent;
2014-02-11 01:47:39 +00:00
/**
* Wird nach dem Parsen aufgerufen.
* Erf<EFBFBD>llt folgenden Aufgaben:
* 1. F<EFBFBD>llt fehlende Typangaben mit TPHs auf.
* 2. Verkn<EFBFBD>pft die Knoten des Syntaxbaums. (setzt Parent)
*
*/
2014-02-12 01:12:12 +00:00
public void parserPostProcessing(SyntaxTreeNode parent) {
this.parent = parent;
for(SyntaxTreeNode node : this.getChildren())node.parserPostProcessing(this);
}
public SyntaxTreeNode getParent() {
return this.parent;
}
2014-02-12 01:12:12 +00:00
public Vector<SyntaxTreeNode> getChildren(){
return new Vector<SyntaxTreeNode>();
}
public Class getParentClass(){
SyntaxTreeNode parent = this.getParent();
if(parent instanceof Class)return (Class)parent;
2014-02-19 04:20:54 +00:00
if(parent == null)throw new TypinferenzException("Das Wurzelelement eines Syntaxbaumes muss Class sein");
return parent.getParentClass();
}
2014-02-11 01:47:39 +00:00
}