-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFunctionBody.java
More file actions
47 lines (38 loc) · 1017 Bytes
/
FunctionBody.java
File metadata and controls
47 lines (38 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import java.util.Vector;
public class FunctionBody implements ASTNode {
Vector<VariableDeclaration> varDecls;
Vector<Statement> stmts;
// Must be assigned when traversing AST
Function containingFunction = null;
public FunctionBody()
{
varDecls = new Vector<VariableDeclaration>();
stmts = new Vector<Statement>();
}
public void addStatement(Statement s) {
stmts.add(s);
}
public Statement getStatement(int index)
{
return stmts.elementAt(index);
}
public int getStatementCount()
{
return stmts.size();
}
public void addVariableDeclaration(VariableDeclaration s) {
varDecls.add(s);
}
public VariableDeclaration getVariableDeclaration(int index)
{
return varDecls.elementAt(index);
}
public int getVariableDeclarationCount()
{
return varDecls.size();
}
@Override
public Object accept(Visitor visitor) {
return visitor.visit(this);
}
}