refactored ast, started lexer
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
#include <string>
|
||||
|
||||
namespace lexer {
|
||||
struct State {
|
||||
std::string sourceText;
|
||||
char* currentPosition;
|
||||
int line;
|
||||
int column;
|
||||
};
|
||||
|
||||
struct Lexer {
|
||||
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user