mirror of
https://github.com/nushell/nushell
synced 2025-01-09 19:59:02 +00: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,
|
||
|
}
|