Huge update, backup commit.
This commit is contained in:
49
src/compiler/Stack.cpp
Normal file
49
src/compiler/Stack.cpp
Normal file
@@ -0,0 +1,49 @@
|
||||
#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
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user