Files
Arctyx/src/compiler/Stack.cpp
2025-07-27 23:50:41 -07:00

50 lines
599 B
C++

#include "arctyx/compiler/Stack.h"
Stack::Stack()
{
}
Stack::Stack(const ehs::UInt_64& offset)
{
}
Stack::Stack(Stack&& other) noexcept
{
}
Stack::Stack(const Stack& other)
{
}
Stack& Stack::operator=(Stack&& other) noexcept
{
}
Stack& Stack::operator=(const Stack& other)
{
}
ehs::UInt_64 Stack::GetOffset() const
{
}
bool Stack::HasItem(const ehs::UInt_64& id) const
{
}
bool Stack::HasItem(const ehs::Str_8& name) const
{
}
bool Stack::AddItem(StackItem item)
{
}
StackItem* Stack::GetItem(const ehs::UInt_64& id) const
{
}
StackItem* Stack::GetItem(const ehs::Str_8& name) const
{
}