nu-protocol 0.103.0

Nushell's internal protocols, including its abstract syntax tree
Documentation
1
2
3
4
5
6
7
use crate::{ast::Call, Span};

#[derive(Debug, Clone)]
pub struct UnevaluatedCallInfo {
    pub args: Call,
    pub name_span: Span,
}