aboutsummaryrefslogtreecommitdiffstats
path: root/runtime.h
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2016-08-31 20:05:10 +0000
committerJan Tuomi <jans.tuomi@gmail.com>2016-08-31 20:05:10 +0000
commitc4cae690deddcb8a7fc6a537816e832525ca0e86 (patch)
tree42a78dedb03d776e3945c1729a2e4b1d264ef2ed /runtime.h
parent1ba5c17a68f13633d6a20785c722b22032ba45c4 (diff)
Develop runtime
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);