summaryrefslogtreecommitdiff
path: root/src/ast/nodes/ExprNode.java
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-06-25 11:33:41 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-06-25 11:33:41 +0200
commit6bdf1fc6c1b7afe18ffcae05f8fb11eca0f51258 (patch)
tree2cfbae97d45388bac38defc9907c77e7b275b207 /src/ast/nodes/ExprNode.java
parent54b2c77e6875c1abb3d73fdfd0de924e75633087 (diff)
wip
Diffstat (limited to 'src/ast/nodes/ExprNode.java')
-rw-r--r--src/ast/nodes/ExprNode.java9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/ast/nodes/ExprNode.java b/src/ast/nodes/ExprNode.java
index 25c2016..39f397e 100644
--- a/src/ast/nodes/ExprNode.java
+++ b/src/ast/nodes/ExprNode.java
@@ -24,10 +24,13 @@ public class ExprNode implements Node {
this.trailers = trailers;
}
+ public String getId() {
+ return ((AtomNode) this.atom).getId();
+ }
+
@Override
public ArrayList<SemanticError> checkSemantics(SymbolTable ST, int _nesting) {
ArrayList<SemanticError> errors = new ArrayList<SemanticError>();
-
if (atom != null) {
errors.addAll(atom.checkSemantics(ST, _nesting));
}
@@ -50,6 +53,10 @@ public class ExprNode implements Node {
// FIXME: type for the expr
@Override
public Type typeCheck() {
+ if (this.atom != null) {
+ return this.atom.typeCheck();
+ }
+
return new VoidType();
}