nu-protocol 0.112.2

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

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