diff options
author | Geno <48206120+gabrielegenovese@users.noreply.github.com> | 2024-07-11 12:57:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-11 12:57:56 +0200 |
commit | b50c7e99603e9f85d82d700d62c16c4fcef88715 (patch) | |
tree | 5052206f06e0426a43599cb236652614db04d22e /src/ast/nodes/CompOpNode.java | |
parent | f0692ff5f9e39cbd1c203e9d5abebf55a3d0f6fc (diff) |
Code generation (#20)
Co-authored-by: geno <gabrigeno@gmail>
Co-authored-by: Santo Cariotti <santo@dcariotti.me>
Diffstat (limited to 'src/ast/nodes/CompOpNode.java')
-rw-r--r-- | src/ast/nodes/CompOpNode.java | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/ast/nodes/CompOpNode.java b/src/ast/nodes/CompOpNode.java new file mode 100644 index 0000000..7997052 --- /dev/null +++ b/src/ast/nodes/CompOpNode.java @@ -0,0 +1,48 @@ +package ast.nodes; + +import java.util.ArrayList; + +import semanticanalysis.SemanticError; +import semanticanalysis.SymbolTable; +import ast.types.*; +import org.antlr.v4.runtime.tree.TerminalNode; + +/** + * Node for the `comp_op` statement of the grammar. + */ +public class CompOpNode implements Node { + + private final TerminalNode op; + + public CompOpNode(TerminalNode op) { + this.op = op; + } + + public String getOp() { + return op.toString(); + } + + @Override + public ArrayList<SemanticError> checkSemantics(SymbolTable ST, int _nesting, FunctionType ft) { + return new ArrayList<>(); + } + + // TODO: it should be boolean, right? + @Override + public Type typeCheck() { + return new VoidType(); + } + + /** + * The code generation for this operation is in `ExprNode`. + */ + @Override + public String codeGeneration() { + return ""; + } + + @Override + public String toPrint(String prefix) { + return prefix + "CompOpNode(" + op + ")\n"; + } +} |