forked from extern/nushell
add in dbg info so I can see what is being matched on
This commit is contained in:
parent
0f27249319
commit
ca7ff37697
@ -57,13 +57,19 @@ impl Command for Last {
|
||||
let beginning_rows_to_skip = 2;
|
||||
|
||||
match input {
|
||||
PipelineData::Stream(stream) => Ok(stream
|
||||
.skip(beginning_rows_to_skip.try_into().unwrap())
|
||||
.into_pipeline_data()),
|
||||
PipelineData::Value(Value::List { vals, .. }) => Ok(vals
|
||||
.into_iter()
|
||||
.skip(beginning_rows_to_skip.try_into().unwrap())
|
||||
.into_pipeline_data()),
|
||||
PipelineData::Stream(stream) => {
|
||||
dbg!("Stream");
|
||||
Ok(stream
|
||||
.skip(beginning_rows_to_skip.try_into().unwrap())
|
||||
.into_pipeline_data())
|
||||
}
|
||||
PipelineData::Value(Value::List { vals, .. }) => {
|
||||
dbg!("Value");
|
||||
Ok(vals
|
||||
.into_iter()
|
||||
.skip(beginning_rows_to_skip.try_into().unwrap())
|
||||
.into_pipeline_data())
|
||||
}
|
||||
_ => {
|
||||
dbg!("Fall to the bottom");
|
||||
Ok(PipelineData::Value(Value::Nothing { span: call.head }))
|
||||
|
Loading…
Reference in New Issue
Block a user