summaryrefslogtreecommitdiff
path: root/src/ast/nodes/SimpleStmtNode.java
diff options
context:
space:
mode:
authorGeno <48206120+gabrielegenovese@users.noreply.github.com>2024-07-11 12:57:56 +0200
committerGitHub <noreply@github.com>2024-07-11 12:57:56 +0200
commitb50c7e99603e9f85d82d700d62c16c4fcef88715 (patch)
tree5052206f06e0426a43599cb236652614db04d22e /src/ast/nodes/SimpleStmtNode.java
parentf0692ff5f9e39cbd1c203e9d5abebf55a3d0f6fc (diff)
Code generation (#20)
Co-authored-by: geno <gabrigeno@gmail> Co-authored-by: Santo Cariotti <santo@dcariotti.me>
Diffstat (limited to 'src/ast/nodes/SimpleStmtNode.java')
-rw-r--r--src/ast/nodes/SimpleStmtNode.java30
1 files changed, 23 insertions, 7 deletions
diff --git a/src/ast/nodes/SimpleStmtNode.java b/src/ast/nodes/SimpleStmtNode.java
index fbeeb1b..31a935f 100644
--- a/src/ast/nodes/SimpleStmtNode.java
+++ b/src/ast/nodes/SimpleStmtNode.java
@@ -23,23 +23,23 @@ public class SimpleStmtNode implements Node {
}
@Override
- public ArrayList<SemanticError> checkSemantics(SymbolTable ST, int _nesting) {
+ public ArrayList<SemanticError> checkSemantics(SymbolTable ST, int _nesting, FunctionType ft) {
ArrayList<SemanticError> errors = new ArrayList<>();
if (assignment != null) {
- errors.addAll(assignment.checkSemantics(ST, _nesting));
+ errors.addAll(assignment.checkSemantics(ST, _nesting, ft));
}
if (expr != null) {
- errors.addAll(expr.checkSemantics(ST, _nesting));
+ errors.addAll(expr.checkSemantics(ST, _nesting, ft));
}
if (returnStmt != null) {
- errors.addAll(returnStmt.checkSemantics(ST, _nesting));
+ errors.addAll(returnStmt.checkSemantics(ST, _nesting, ft));
}
if (importStmt != null) {
- errors.addAll(importStmt.checkSemantics(ST, _nesting));
+ errors.addAll(importStmt.checkSemantics(ST, _nesting, ft));
}
return errors;
@@ -50,10 +50,26 @@ public class SimpleStmtNode implements Node {
return new VoidType();
}
- // TODO: add code generation for SimpleStmtNode
@Override
public String codeGeneration() {
- return "";
+ if (assignment != null) {
+ return assignment.codeGeneration();
+ }
+
+ if (expr != null) {
+ return expr.codeGeneration();
+ }
+
+ if (returnStmt != null) {
+ return returnStmt.codeGeneration();
+ }
+
+ // Not supported
+ // if (importStmt != null) {
+ // return importStmt.codeGeneration();
+ // }
+
+ return "Error: everything is null in Compound node";
}
@Override