add function calling

This commit is contained in:
William Bell
2025-08-04 23:31:25 +01:00
parent 6c05eff6a4
commit a8acafffe9
13 changed files with 177 additions and 2185037 deletions

View File

@@ -36,9 +36,12 @@ typedef struct Stack {
struct argon_function_struct {
uint8_t* bytecode;
size_t bytecode_length;
Stack stack;
Stack *stack;
size_t number_of_parameters;
struct string_struct *parameters;
char* path;
uint64_t line;
uint64_t column;
};