summaryrefslogtreecommitdiffstats
path: root/src/ast/types/Type.java
diff options
context:
space:
mode:
authorGeno <48206120+gabrielegenovese@users.noreply.github.com>2024-07-11 10:57:56 +0000
committerGitHub <noreply@github.com>2024-07-11 10:57:56 +0000
commitb50c7e99603e9f85d82d700d62c16c4fcef88715 (patch)
tree5052206f06e0426a43599cb236652614db04d22e /src/ast/types/Type.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/types/Type.java')
-rw-r--r--src/ast/types/Type.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast/types/Type.java b/src/ast/types/Type.java
index 6190106..c5b8312 100644
--- a/src/ast/types/Type.java
+++ b/src/ast/types/Type.java
@@ -20,7 +20,7 @@ public class Type implements Node {
}
@Override
- public ArrayList<SemanticError> checkSemantics(SymbolTable ST, int _nesting) {
+ public ArrayList<SemanticError> checkSemantics(SymbolTable ST, int _nesting, FunctionType ft) {
// It is never invoked
return null;
}