From 78463c30031a478936b21168a6fc93ae6eeaaeb9 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 18 Oct 2010 04:38:19 +0000 Subject: Several of these new files will go away, but I didn't want to lose them for now. The parser works! The parser compiler works! It makes parsers! Now we just have to implement post processing, token lookup tables, and storage. --- src/lexer.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/lexer.h') diff --git a/src/lexer.h b/src/lexer.h index 2cb5f51..9840afe 100644 --- a/src/lexer.h +++ b/src/lexer.h @@ -36,6 +36,10 @@ namespace Bu } TokenType iToken; Bu::Variant vExtra; + int iStartCol; + int iStartRow; + int iEndCol; + int iEndRow; }; virtual Token *nextToken()=0; -- cgit v1.2.3