Advertisement
Frumkin

Untitled

Aug 16th, 2021
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.53 KB | None | 0 0
  1. #pragma once
  2.  
  3. #include <iostream>
  4. #include <string>
  5. #include <vector>
  6.  
  7. #include "Token.hpp"
  8. #include "Tokenizer.hpp"
  9. #include "Structures/Program.hpp"
  10. #include "Structures/GlobalFunction.hpp"
  11. #include "Structures/Parameter.hpp"
  12. #include "Structures/GlobalFunctionScope.hpp"
  13. #include "Diagnostics.hpp"
  14.  
  15. class Parser {
  16.     private:
  17.         Program program;
  18.     public:
  19.         Tokenizer Tokenizer;
  20.         std::vector<Token> Tokens;
  21.  
  22.         void Initialize();
  23.         void CreateSyntaxTree();
  24.         void Log();
  25. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement