add declarations to translator

This commit is contained in:
2025-06-14 04:13:14 +01:00
parent f2dd133e7d
commit 3a19b1519f
12 changed files with 86 additions and 24 deletions

View File

@@ -0,0 +1,10 @@
#ifndef BYTECODE_DECLARATION_H
#define BYTECODE_DECLARATION_H
#include "../translator.h"
size_t translate_parsed_string(Translated *translated, ParsedValue *parsedValue);
size_t translate_parsed_declaration(Translated *translated,
ParsedValue *parsedValue);
#endif