Tests started. Enabling constant declaration
This commit is contained in:
3
scope.h
3
scope.h
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user