aboutsummaryrefslogtreecommitdiff
path: root/include/lexer.h
blob: 16ef0c0644ea61fbb954742d78dd1abf69e5b9b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __LEXER_H
#define __LEXER_H

#include <list.h>
#include <token.h>

class Lexer
{
private:
  char *script;
  List *tokens;

public:
  void init(char *script);
  void scan_tokens(void);
};

#endif