[FEAT] Implemented 'if' support
[BUG] Variables inside blocks couldn't shadow those outside [FEAT] Decompiler shows address of each opcode
This commit is contained in:
2
scope.h
2
scope.h
@@ -11,7 +11,7 @@ void scope_close_block();
|
||||
|
||||
const int scope_declare_variable(const std::string name, const uint32_t type, const uint32_t length);
|
||||
|
||||
const bool scope_variable_exists(const std::string name);
|
||||
const bool scope_variable_exists(const std::string name, const bool can_shadow = false);
|
||||
const uint32_t scope_get_variable_address();
|
||||
const int scope_get_variable_size();
|
||||
const int scope_get_variable_type();
|
||||
|
||||
Reference in New Issue
Block a user