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
where
There are a few control groups (of do, let, and case) that don't handle where right.
do
let
case
main.rs
The text was updated successfully, but these errors were encountered:
Another example:
toRustType (IsPtr mut to) = let Rust.TypeName to' = toRustType to in Rust.TypeName (rustMut mut ++ to') where rustMut Rust.Mutable = "*mut " rustMut Rust.Immutable = "*const "
Sorry, something went wrong.
No branches or pull requests
There are a few control groups (of
do
,let
, andcase
) that don't handlewhere
right.where
, sowhere
first needs to be stripped from the body.where
clause should be asserted to be the last item in the body.where
clause should have its own parameter in the AST node. Then it should be checked that all of these are printed inmain.rs
The text was updated successfully, but these errors were encountered: