Skip to content
New issue

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

execute malluscript on browsers! [WIP] #22

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from

result -> data

d609e93
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Draft

execute malluscript on browsers! [WIP] #22

result -> data
d609e93
Select commit
Loading
Failed to load commit list.
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 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 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 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 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