diff options
Diffstat (limited to 'src/forth/parser.rs')
| -rw-r--r-- | src/forth/parser.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/forth/parser.rs b/src/forth/parser.rs index ac6715d..1eb93df 100644 --- a/src/forth/parser.rs +++ b/src/forth/parser.rs @@ -1,7 +1,5 @@ use super::interp::{ByteCode, OpCode, WordList}; -use log::debug; - use std::collections::HashMap; use std::iter::{Enumerate, Iterator}; use std::str::Chars; @@ -81,7 +79,6 @@ impl<'a> Parser<'a> { self.enumerator.by_ref() .find(|(_i, c)| c.is_whitespace())?; let word = &self.text[start..end]; - debug!("Parser::next_word → ‘{}’ ({} → {})", word, start, end); Some((word, start, end)) } |
