Fix crash on empty files() statement
This commit is contained in:
parent
5fe58cda10
commit
73aae27148
1 changed files with 14 additions and 14 deletions
|
@ -125,6 +125,7 @@ impl MpsFunctionFactory<FilesStatement> for FilesFunctionFactory {
|
|||
let mut root_path = None;
|
||||
let mut pattern = None;
|
||||
let mut recursive = None;
|
||||
if tokens.len() != 0 {
|
||||
if tokens[0].is_literal() {
|
||||
// folder is specified without keyword
|
||||
root_path = Some(assert_token(
|
||||
|
@ -139,7 +140,6 @@ impl MpsFunctionFactory<FilesStatement> for FilesFunctionFactory {
|
|||
assert_token_raw(MpsToken::Comma, tokens)?;
|
||||
}
|
||||
}
|
||||
if tokens.len() != 0 {
|
||||
// parse keyword function parameters
|
||||
let ingest = |tokens2: &mut VecDeque<MpsToken>| {
|
||||
if tokens2.len() < 3 {
|
||||
|
|
Loading…
Reference in a new issue