We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
These 2 test cases:
assert_eq!( eval_ok("builtins.baseNameOf /foo/bar/baz/"), Value::Str("baz".into()) ); assert_eq!( eval_ok("(builtins.baseNameOf (/foo/bar/baz/))"), Value::Str("baz".into()) );
Produce some very weird/unexpected results, including a panic on the second one.
The text was updated successfully, but these errors were encountered:
In theory, paths cant have trailing slashes in the first place, and it should throw a parser error there instead.
Sorry, something went wrong.
No branches or pull requests
These 2 test cases:
Produce some very weird/unexpected results, including a panic on the second one.
The text was updated successfully, but these errors were encountered: