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