11 lines
237 B
C++
11 lines
237 B
C++
#include <execute/state.hpp>
|
|
|
|
namespace Execute
|
|
{
|
|
State::State(std::unordered_map<std::string, unsigned> const & _labelStatementIndice)
|
|
: currentStatement(0u),
|
|
nextStatement(1u),
|
|
labelStatementIndice(_labelStatementIndice)
|
|
{
|
|
}
|
|
} |