join_segments -> build_glob_string

- this is a more descriptive name
This commit is contained in:
cyqsimon
2023-11-02 20:21:07 +08:00
parent 827b3eca2f
commit 64840fbbae
2 changed files with 4 additions and 4 deletions

View File

@ -138,7 +138,7 @@ impl Matcher {
// parser logic ensures that this case can only happen when there are dynamic segments
_ => {
let segments_codegen = self.0.iter().map(MatcherSegment::codegen).join(", ");
let closure = format!("|| join_segments(&[{segments_codegen}])");
let closure = format!("|| build_glob_string(&[{segments_codegen}])");
format!("BuiltinMatcher::Dynamic(Lazy::new({closure}))")
}
}