Skip to content

Commit 2b123e4

Browse files
committed
Erase some crud
1 parent 5f32762 commit 2b123e4

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/reader.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ pub fn identifier_parser(input: &str) -> IResult<&str, String> {
131131
);
132132

133133
named!(identifier_tail<&str, &str>, take_while!(is_identifier_char));
134-
134+
135135
named!(identifier <&str, String>,
136136
do_parse!(
137137
head: identifier_head >>

src/repl.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ use crate::value::Evaluable;
1111
use crate::value::Value;
1212
use std::rc::Rc;
1313

14-
use nom::Err::Incomplete;
15-
use nom::IResult;
16-
use nom::Needed::Size;
17-
1814
pub struct Repl {
1915
environment: Rc<Environment>,
2016
}

0 commit comments

Comments
 (0)