mirror of
https://github.com/nushell/nushell.git
synced 2025-05-20 18:00:49 +02:00
9 lines
144 B
Rust
9 lines
144 B
Rust
use crate::ast::Call;
|
|
use crate::Span;
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct UnevaluatedCallInfo {
|
|
pub args: Call,
|
|
pub name_span: Span,
|
|
}
|