forked from extern/nushell
# Description This fix changes pipelines to allow them to actually be empty. Mapping over empty pipelines gives empty pipelines. Empty pipelines immediately return `None` when iterated. This removes a some of where `Span::new(0, 0)` was coming from, though there are other cases where we still use it. # User-Facing Changes None # Tests + Formatting Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass # After Submitting If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date.
79 lines
2.2 KiB
Rust
79 lines
2.2 KiB
Rust
use nu_engine::CallExt;
|
|
use nu_parser::parse;
|
|
use nu_protocol::{
|
|
ast::Call,
|
|
engine::{Command, EngineState, Stack, StateWorkingSet},
|
|
Category, Example, PipelineData, ShellError, Signature, Span, Spanned, SyntaxShape, Type,
|
|
Value,
|
|
};
|
|
|
|
#[derive(Clone)]
|
|
pub struct Ast;
|
|
|
|
impl Command for Ast {
|
|
fn name(&self) -> &str {
|
|
"ast"
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Print the abstract syntax tree (ast) for a pipeline."
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("ast")
|
|
.input_output_types(vec![(Type::Nothing, Type::Nothing)])
|
|
.required(
|
|
"pipeline",
|
|
SyntaxShape::String,
|
|
"the pipeline to print the ast for",
|
|
)
|
|
.category(Category::Core)
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
_input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let pipeline: Spanned<String> = call.req(engine_state, stack, 0)?;
|
|
let mut working_set = StateWorkingSet::new(engine_state);
|
|
|
|
let (output, err) = parse(&mut working_set, None, pipeline.item.as_bytes(), false, &[]);
|
|
eprintln!("output: {:#?}\nerror: {:#?}", output, err);
|
|
|
|
Ok(PipelineData::empty())
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![
|
|
Example {
|
|
description: "Print the ast of a string",
|
|
example: "ast 'hello'",
|
|
result: Some(Value::nothing(Span::test_data())),
|
|
},
|
|
Example {
|
|
description: "Print the ast of a pipeline",
|
|
example: "ast 'ls | where name =~ README'",
|
|
result: Some(Value::nothing(Span::test_data())),
|
|
},
|
|
Example {
|
|
description: "Print the ast of a pipeline with an error",
|
|
example: "ast 'for x in 1..10 { echo $x '",
|
|
result: Some(Value::nothing(Span::test_data())),
|
|
},
|
|
]
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
#[test]
|
|
fn test_examples() {
|
|
use super::Ast;
|
|
use crate::test_examples;
|
|
test_examples(Ast {})
|
|
}
|
|
}
|