Str.startsWith, str.endsWith and friends

This commit is contained in:
Folkert 2023-02-10 20:18:20 +01:00
parent 8df8c19ae2
commit eb48f01f63
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
8 changed files with 98 additions and 54 deletions

View file

@ -18,12 +18,16 @@ macro_rules! run_jit_function_raw {
let result = main();
assert_eq!(
$errors,
std::vec::Vec::new(),
"Encountered errors: {:?}",
$errors
);
if !$errors.is_empty() {
dbg!(&$errors);
assert_eq!(
$errors,
std::vec::Vec::new(),
"Encountered errors: {:?}",
$errors
);
}
$transform(result)
}