summaryrefslogtreecommitdiff
path: root/src/semanticanalysis
diff options
context:
space:
mode:
authorgeno <gabriele.genovese2@studio.unibo.it>2024-06-25 16:04:07 +0200
committergeno <gabriele.genovese2@studio.unibo.it>2024-06-25 16:04:07 +0200
commitb12c01732860f9727626829e0b25a273de5fe5c7 (patch)
tree50bbf73b7bb191bfcc00ad42a58f67b131d4d125 /src/semanticanalysis
parentda554f4281da45a22f7101f26cfdf274149c7966 (diff)
check semantic of defined and undefined variables implemented
do not check for built-in function works on the example
Diffstat (limited to 'src/semanticanalysis')
-rw-r--r--src/semanticanalysis/SymbolTable.java17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/semanticanalysis/SymbolTable.java b/src/semanticanalysis/SymbolTable.java
index 8193d5e..617b48a 100644
--- a/src/semanticanalysis/SymbolTable.java
+++ b/src/semanticanalysis/SymbolTable.java
@@ -126,15 +126,18 @@ public class SymbolTable {
// We always increment the offset by 1 otherwise we need ad-hoc bytecode
// operations
// FIXME: wtf is that?
- if (type.getClass().equals((new BoolType()).getClass())) {
- offs = offs + 1;
- } else if (type.getClass().equals((new IntType()).getClass())) {
- offs = offs + 1;
- } else {
- offs = offs + 1;
- }
+ // if (type.getClass().equals((new BoolType()).getClass())) {
+ // offs = offs + 1;
+ // } else if (type.getClass().equals((new IntType()).getClass())) {
+ // offs = offs + 1;
+ // } else {
+ // offs = offs + 1;
+ // }
+ offs = offs + 1;
this.offset.add(offs);
+
+ // System.out.println("Insert " + id + " of type " + type.toString() + " with nesting " + String.valueOf(_nesting));
}
/**