execute malluscript on browsers! [WIP] #22
Draft
GitHub Actions / clippy
succeeded
Jan 15, 2024 in 1s
clippy
4 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 4 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.75.0 (82e1608df 2023-12-21)
- cargo 1.75.0 (1d8b05cdd 2023-11-20)
- clippy 0.1.75 (82e1608 2023-12-21)
Annotations
Check warning on line 54 in src/lib.rs
github-actions / clippy
unneeded `return` statement
warning: unneeded `return` statement
--> src/lib.rs:54:13
|
54 | return output;
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
help: remove `return`
|
54 - return output;
54 + output
|
Check warning on line 46 in src/lib.rs
github-actions / clippy
unneeded `return` statement
warning: unneeded `return` statement
--> src/lib.rs:46:21
|
46 | return exec.output;
| ^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
help: remove `return`
|
46 - return exec.output;
46 + exec.output
|
Check warning on line 43 in src/lib.rs
github-actions / clippy
unneeded `return` statement
warning: unneeded `return` statement
--> src/lib.rs:43:21
|
43 | return output;
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `#[warn(clippy::needless_return)]` on by default
help: remove `return`
|
43 - return output;
43 + output
|
Check warning on line 45 in src/executor/ast.rs
github-actions / clippy
variant name ends with the enum's name
warning: variant name ends with the enum's name
--> src/executor/ast.rs:45:5
|
45 | ListExpression((usize, usize), Vec<Expression>),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#enum_variant_names
= note: `#[warn(clippy::enum_variant_names)]` on by default
Loading