diff options
Diffstat (limited to 'src/experimental/lexer.cpp')
-rw-r--r-- | src/experimental/lexer.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/experimental/lexer.cpp b/src/experimental/lexer.cpp new file mode 100644 index 0000000..185456a --- /dev/null +++ b/src/experimental/lexer.cpp | |||
@@ -0,0 +1,40 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libbu++ library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
8 | #include "bu/lexer.h" | ||
9 | #include "bu/membuf.h" | ||
10 | #include "bu/formatter.h" | ||
11 | |||
12 | Bu::Lexer::Lexer() | ||
13 | { | ||
14 | } | ||
15 | |||
16 | Bu::Lexer::~Lexer() | ||
17 | { | ||
18 | } | ||
19 | |||
20 | Bu::Lexer::Token::Token() : | ||
21 | iToken( -1 ) | ||
22 | { | ||
23 | } | ||
24 | |||
25 | Bu::Lexer::Token::Token( Bu::Lexer::TokenType iToken ) : | ||
26 | iToken( iToken ) | ||
27 | { | ||
28 | } | ||
29 | |||
30 | Bu::String Bu::Lexer::tokenToString( const Bu::Lexer::Token &t ) | ||
31 | { | ||
32 | Bu::MemBuf mb; | ||
33 | Bu::Formatter f( mb ); | ||
34 | f << "<" << t.iToken << ">"; | ||
35 | if( t.vExtra.isSet() ) | ||
36 | f << " (" << t.vExtra << ")"; | ||
37 | |||
38 | return mb.getString(); | ||
39 | } | ||
40 | |||