13#ifndef NSBACI_TYPES_COMPILERTYPES_H
14#define NSBACI_TYPES_COMPILERTYPES_H
18#include <unordered_map>
Type definitions namespace for nsbaci (runtime-specific).
uint32_t MemoryAddr
Type alias for memory addresses.
Definition compilerTypes.h:31
std::string VarName
Type alias for variable names.
Definition compilerTypes.h:28
std::unordered_map< VarName, SymbolInfo > SymbolTable
Lookup table mapping variable names to their symbol info.
Definition compilerTypes.h:42
Information about a variable/symbol.
Definition compilerTypes.h:34
std::string type
"int", "bool", "char", "void", etc.
Definition compilerTypes.h:37