pl.edu.pjwstk.yaod.yaql.abstractsyntaxtree.statements
Class ProcedureDeclarationStatement
java.lang.Object
|
+--pl.edu.pjwstk.yaod.yaql.abstractsyntaxtree.AbstractSyntaxTree
|
+--pl.edu.pjwstk.yaod.yaql.abstractsyntaxtree.Statement
|
+--pl.edu.pjwstk.yaod.yaql.abstractsyntaxtree.statements.ProcedureDeclarationStatement
- All Implemented Interfaces:
- java.io.Serializable
- public class ProcedureDeclarationStatement
- extends Statement
The ProcedureDeclarationStatement
class represents the
statement nodes in the abstract syntax tree.
- Author:
- Jakub Trzetrzelewski, jakub_trzetrzelewski@yahoo.com
- See Also:
- Serialized Form
Method Summary |
void |
accept(Visitor v)
Method responsible for traversing the abstract syntax tree structure. |
java.lang.String |
getSpellingAndPosition()
Returns the spelling and positions of all terminals in a node. |
java.lang.String |
getTypeAsString()
Returns the abstract syntax tree node type as a string value. |
void |
show(java.lang.String st)
Method responsible for displaying the statement node. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
s
public StatementList s
p
public FormalParametersList p
k
public KeywordTerminal k
i
public IdentifierTerminal i
ProcedureDeclarationStatement
public ProcedureDeclarationStatement(FormalParametersList p,
StatementList s,
KeywordTerminal k,
IdentifierTerminal i)
- Creates a new statement node with the given statement list
s
,
formal parameters list p
and terminals k
and
i
.
- Parameters:
s
- any statement.p
- any formal parameters list.k
- keyword terminal.i
- identifier terminal.
getTypeAsString
public java.lang.String getTypeAsString()
- Returns the abstract syntax tree node type as a string value.
- Overrides:
getTypeAsString
in class AbstractSyntaxTree
- Returns:
- the abstract syntax tree node type as string.
getSpellingAndPosition
public java.lang.String getSpellingAndPosition()
- Returns the spelling and positions of all terminals in a node.
- Overrides:
getSpellingAndPosition
in class AbstractSyntaxTree
- Returns:
- the spelling and positions of all terminals in a node.
accept
public void accept(Visitor v)
throws EvalException
- Method responsible for traversing the abstract syntax tree structure.
- Overrides:
accept
in class AbstractSyntaxTree
- Parameters:
v
- the visitor.- Throws:
EvalException
- if evaluation fails.- See Also:
Visitor
show
public void show(java.lang.String st)
- Method responsible for displaying the statement node.
- Overrides:
show
in class AbstractSyntaxTree
- Parameters:
st
- the string which is an auxiliary tabulator.