|
ht's Scheme Interpreter
1.0
a simplified scheme interpreter implementation
|
#include <tokenizer.hpp>
Public Member Functions | |
| Tokenizer (const std::vector< std::string > &lines) | |
| void | split (const std::vector< std::string > &lines) |
Public Attributes | |
| std::list< std::string > | rawTokens |
| std::list< Token > | tokens |
Definition at line 7 of file tokenizer.hpp.
| Tokenizer::Tokenizer | ( | const std::vector< std::string > & | lines | ) |
Definition at line 18 of file tokenizer.cpp.
| void Tokenizer::split | ( | const std::vector< std::string > & | lines | ) |
Definition at line 23 of file tokenizer.cpp.
| std::list<std::string> Tokenizer::rawTokens |
Definition at line 12 of file tokenizer.hpp.
| std::list<Token> Tokenizer::tokens |
Definition at line 13 of file tokenizer.hpp.