Basic arithmetic and jump labels
This commit is contained in:
11
src/execute/state.cpp
Normal file
11
src/execute/state.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include <execute/state.hpp>
|
||||
|
||||
namespace Execute
|
||||
{
|
||||
State::State(std::unordered_map<std::string, unsigned> const & _labelStatementIndice)
|
||||
: currentStatement(0u),
|
||||
nextStatement(1u),
|
||||
labelStatementIndice(_labelStatementIndice)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user