#include "elna/source/result.hpp" namespace elna::source { error::error(const position position) : m_position(position) { } std::size_t error::line() const noexcept { return this->m_position.line; } std::size_t error::column() const noexcept { return this->m_position.column; } name_collision::name_collision(const std::string& name, const position current, const position previous) : error(current), name(name), previous(previous) { } std::string name_collision::what() const { return "Name '" + name + "' was already defined"; } type::type(const std::size_t byte_size) : byte_size(byte_size) { } primitive_type::primitive_type(const std::string& type_name, const std::size_t byte_size) : type(byte_size), type_name(type_name) { } symbol_table::symbol_table(std::shared_ptr scope) : outer_scope(scope) { if (scope == nullptr) { enter("writei", std::make_shared()); enter("writeb", std::make_shared()); } } std::shared_ptr symbol_table::lookup(const std::string& name) { auto entry = entries.find(name); if (entry != entries.cend()) { return entry->second; } if (this->outer_scope != nullptr) { return this->outer_scope->lookup(name); } return nullptr; } void symbol_table::enter(const std::string& name, std::shared_ptr entry) { entries.insert_or_assign(name, entry); } std::shared_ptr symbol_table::scope() { return this->outer_scope; } info::~info() { } info::info() { } type_info::type_info(const class type& type) : info(), m_type(type) { } type_info::~type_info() { } const class type& type_info::type() const noexcept { return m_type; } constant_info::constant_info(const std::int32_t value) : m_value(value) { } constant_info::~constant_info() { } std::int32_t constant_info::value() const noexcept { return m_value; } variable_info::~variable_info() { } parameter_info::parameter_info(const class type& type) : m_type(type) { } parameter_info::~parameter_info() { } const class type& parameter_info::type() const noexcept { return m_type; } procedure_info::procedure_info(std::shared_ptr outer_scope) : local_table(std::make_shared(outer_scope)) { } procedure_info::~procedure_info() { } std::size_t procedure_info::stack_size() const noexcept { return this->local_stack_size; } void procedure_info::stack_size(const std::size_t size) noexcept { this->local_stack_size = size; } std::shared_ptr procedure_info::scope() { return local_table; } intrinsic_info::~intrinsic_info() { } }