blob: 4dcb926991e607ac3fdb84b1a049eabeff9a3144 (
plain)
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
|
package ast.nodes;
import java.util.ArrayList;
import semanticanalysis.SemanticError;
import semanticanalysis.SymbolTable;
import ast.types.*;
/**
* Node for the `atom` statement of the grammar.
*/
public class AtomNode implements Node {
protected String val;
public AtomNode(String val) {
this.val = val;
}
@Override
public ArrayList<SemanticError> checkSemantics(SymbolTable ST, int _nesting) {
return new ArrayList<SemanticError>();
}
// FIXME: this type for atom
@Override
public Type typeCheck() {
return new AtomType();
}
// TODO: add code generation for atom node
@Override
public String codeGeneration() {
return "";
}
@Override
public String toPrint(String prefix) {
if (val != null) {
return prefix + "Atom(" + val + ")\n";
}
return prefix + "Atom(null)\n";
}
}
|