mirror of
https://github.com/nushell/nushell
synced 2024-11-16 09:47:57 +00:00
WIP
This commit is contained in:
parent
9ae9beb94a
commit
1c0096b2fb
2 changed files with 1 additions and 2 deletions
|
@ -0,0 +1 @@
|
|||
paths = ["C:\\Users\\wycat\\Code\\nom_locate"]
|
|
@ -71,9 +71,7 @@ pub fn raw_integer(input: NomSpan) -> IResult<NomSpan, Spanned<i64>> {
|
|||
let start = input.offset;
|
||||
trace_step(input, "raw_integer", move |input| {
|
||||
let (input, neg) = opt(tag("-"))(input)?;
|
||||
println!("(input,neg) = {:?} {:?}", input, neg);
|
||||
let (input, num) = digit1(input)?;
|
||||
println!("(input,num) = {:?} {:?}", input, num);
|
||||
let end = input.offset;
|
||||
|
||||
Ok((
|
||||
|
|
Loading…
Reference in a new issue