let format access variables also (#1842)

This commit is contained in:
Jonathan Turner
2020-05-18 21:20:09 -07:00
committed by GitHub
parent 76b170cea0
commit b89976daef
5 changed files with 40 additions and 61 deletions

View File

@ -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};

View File

@ -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>) {