summaryrefslogtreecommitdiff
path: root/src/lang/tokenizer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lang/tokenizer.rs')
-rw-r--r--src/lang/tokenizer.rs15
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 {