aboutsummaryrefslogtreecommitdiffstats
path: root/runtime.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime.h')
-rw-r--r--runtime.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime.h b/runtime.h
index f1b050d..cdecd84 100644
--- a/runtime.h
+++ b/runtime.h
@@ -1,10 +1,13 @@
#pragma once
#include "value.h"
#include <vector>
+#include "token.h"
class Runtime {
private:
std::vector<Value> m_values;
+ bool runCommand(const Token& token);
+
public:
Runtime();
void run(std::vector<Token>& tokens);