summaryrefslogtreecommitdiff
path: root/src/ast/nodes/AtomNode.java
diff options
context:
space:
mode:
authorL0P0P <grassoemanuele@live.com>2024-06-26 11:44:58 +0200
committerL0P0P <grassoemanuele@live.com>2024-06-26 11:44:58 +0200
commit9e6c17cb44bc165e315ec039a0e09183716d2037 (patch)
tree4a64fd37fa9b2483b88a5f33a37c6b9b51812d81 /src/ast/nodes/AtomNode.java
parentfc712f94a7ed8554d8d44f4965be367354a7e670 (diff)
Semantic check for function declaration and function invocation
Diffstat (limited to 'src/ast/nodes/AtomNode.java')
-rw-r--r--src/ast/nodes/AtomNode.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/ast/nodes/AtomNode.java b/src/ast/nodes/AtomNode.java
index 0a3c765..0704bc4 100644
--- a/src/ast/nodes/AtomNode.java
+++ b/src/ast/nodes/AtomNode.java
@@ -25,10 +25,13 @@ public class AtomNode implements Node {
@Override
public ArrayList<SemanticError> checkSemantics(SymbolTable ST, int _nesting) {
var errors = new ArrayList<SemanticError>();
- // System.out.println("[ATOM] id: " + getId() + " ns: " + _nesting + " top_lookup" + ST.top_lookup(this.getId()));
- if ((this.typeCheck() instanceof AtomType) && ST.nslookup(this.getId()) < 0) {
+
+ // Print the symbol table
+ System.out.println(ST);
+
+ if ((this.typeCheck() instanceof AtomType) && !ST.top_lookup(this.getId())/*ST.nslookup(this.getId()) < 0*/) {
// System.out.println(!(this.typeCheck() instanceof IntType) + " " + !ST.top_lookup(this.getId()));
- errors.add(new SemanticError("Undefined name `" + this.getId() + "`"));
+ errors.add(new SemanticError("'" + this.getId() + "' is not defined."));
}
return errors;