Improve flattening (#69)

This commit is contained in:
vms
2021-02-18 17:30:14 +03:00
committed by GitHub
parent d43b5454fa
commit 13f93a0f88
24 changed files with 1137 additions and 540 deletions

View File

@ -30,7 +30,3 @@ pub mod tests;
pub use self::air_parser::parse;
pub use air::AIRParser;
pub use lexer::AIRLexer;
fn into_variable_and_path(str: &str, pos: usize) -> (&str, &str) {
(&str[0..pos], &str[pos + 1..])
}