aboutsummaryrefslogtreecommitdiffstats
path: root/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/parser.h b/parser.h
deleted file mode 100644
index cd39732..0000000
--- a/parser.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#pragma once
-#include <string>
-#include "token.h"
-#include <vector>
-
-class Parser {
- public:
- Parser();
-
- std::vector<int> parseValues(const std::string&);
- std::vector<Token> parseCode(const std::string&);
-
- static void printTokens(const std::vector<Token>&);
- static void printValues(const std::vector<int>&);
-};