diff options
author | Graham Northup <grissess@nexusg.org> | 2017-09-24 03:41:45 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-09-24 03:41:45 -0400 |
commit | 7eef21b3b90898f4ef05fa4220fde608cf55c6ab (patch) | |
tree | db09a752bef57a5b6eb6040048ed1fdf66ab5043 /src/lang/tokenizer.rs | |
parent | 3d370b9a980d88f884ddd87b62bc785c3b963e1d (diff) |
parser appears to work (oh my)
Diffstat (limited to 'src/lang/tokenizer.rs')
-rw-r--r-- | src/lang/tokenizer.rs | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/lang/tokenizer.rs b/src/lang/tokenizer.rs index d1b34e0..4f2858c 100644 --- a/src/lang/tokenizer.rs +++ b/src/lang/tokenizer.rs @@ -173,13 +173,20 @@ impl<T: Iterator<Item=char>> Tokenizer<T> { } } - fn next_token(&mut self) -> Result<Token, ErrorType> { + pub fn next_token(&mut self) -> Result<Token, ErrorType> { + let res = self._next_token(); + eprintln!("next_token: {:?}", res); + res + } + + fn _next_token(&mut self) -> Result<Token, ErrorType> { let mut c = self.next_char(); if c == None { return Ok(Token::EOF); } let mut cc = c.unwrap(); + /* Whitespace */ while cc.is_whitespace() { c = self.next_char(); if c == None { @@ -315,10 +322,16 @@ impl<T: Iterator<Item=char>> Tokenizer<T> { radix = 16; } else if ncc == self.lexemes.esc_oct { radix = 8; + } else if ncc == self.lexemes.radix_point { + floating = true; + buffer.push(cc); + buffer.push(ncc); } else { buffer.push(cc); buffer.push(ncc); } + } else { + buffer.push(cc); } loop { |