summaryrefslogtreecommitdiffhomepage
path: root/lexer.cpp
blob: 4a458c30fb88cea3525bac7032ece182ca4a68c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "lexer.h"

using namespace Lex;

Lexer::Lexer(const BNF& bnf, const std::string& Top)
{
}

std::vector<Token> Lexer::Lex(const std::string& s)
{
 std::vector<Token> result;

 return result;
}