Tests started. Enabling constant declaration

This commit is contained in:
2021-05-03 18:49:26 +02:00
parent 38e3bb1630
commit 36caa0b651
7 changed files with 85 additions and 67 deletions

View File

@@ -3,12 +3,13 @@
#include <stdint.h>
void scope_init();
const bool scope_is_local();
void scope_open_local();
const int scope_close_local();
void scope_open_block();
void scope_close_block();
const uint32_t scope_declare_variable(const std::string name, const int type, const int length);
const int scope_declare_variable(const std::string name, const int type, const int length);
const bool scope_variable_exists(const std::string name);
const uint32_t scope_get_variable_address();