mirror of
https://github.com/nushell/nushell.git
synced 2025-06-08 02:57:06 +02:00
8 lines
135 B
Rust
8 lines
135 B
Rust
use crate::{Span, ast::Call};
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct UnevaluatedCallInfo {
|
|
pub args: Call,
|
|
pub name_span: Span,
|
|
}
|