mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 07:46:01 +02:00
ColumnPath creation flexibility. (#2674)
This commit is contained in:
committed by
GitHub
parent
bf2363947b
commit
791e07650d
@ -18,7 +18,9 @@ use crate::signature::SignatureRegistry;
|
||||
use bigdecimal::BigDecimal;
|
||||
|
||||
/// Parses a simple column path, one without a variable (implied or explicit) at the head
|
||||
fn parse_simple_column_path(lite_arg: &Spanned<String>) -> (SpannedExpression, Option<ParseError>) {
|
||||
pub fn parse_simple_column_path(
|
||||
lite_arg: &Spanned<String>,
|
||||
) -> (SpannedExpression, Option<ParseError>) {
|
||||
let mut delimiter = '.';
|
||||
let mut inside_delimiter = false;
|
||||
let mut output = vec![];
|
||||
|
Reference in New Issue
Block a user