forked from extern/nushell
let format access variables also (#1842)
This commit is contained in:
@ -5,7 +5,7 @@ mod shapes;
|
||||
mod signature;
|
||||
|
||||
pub use crate::lite_parse::{lite_parse, LiteBlock};
|
||||
pub use crate::parse::{classify_block, garbage};
|
||||
pub use crate::parse::{classify_block, garbage, parse_full_column_path};
|
||||
pub use crate::path::expand_ndots;
|
||||
pub use crate::shapes::shapes;
|
||||
pub use crate::signature::{Signature, SignatureRegistry};
|
||||
|
@ -73,7 +73,7 @@ fn parse_simple_column_path(lite_arg: &Spanned<String>) -> (SpannedExpression, O
|
||||
}
|
||||
|
||||
/// Parses a column path, adding in the preceding reference to $it if it's elided
|
||||
fn parse_full_column_path(
|
||||
pub fn parse_full_column_path(
|
||||
lite_arg: &Spanned<String>,
|
||||
registry: &dyn SignatureRegistry,
|
||||
) -> (SpannedExpression, Option<ParseError>) {
|
||||
|
Reference in New Issue
Block a user