refactor: move more stdlib functions to builtins #28
Annotations
2 errors
Run auguwu/[email protected]:
crates/jrsonnet-evaluator/src/lib.rs#L609
error: consider adding a `;` to the last statement for consistent formatting
--> crates/jrsonnet-evaluator/src/stdlib/format.rs:609:5
|
609 | / tmp_out.push(
610 | | std::char::from_u32(n as u32)
611 | | .ok_or_else(|| InvalidUnicodeCodepointGot(n as u32))?,
612 | | )
| |_________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#semicolon_if_nothing_returned
= note: `-D clippy::semicolon-if-nothing-returned` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::semicolon_if_nothing_returned)]`
help: add a `;` here
|
609 ~ tmp_out.push(
610 ~ std::char::from_u32(n as u32)
611 ~ .ok_or_else(|| InvalidUnicodeCodepointGot(n as u32))?,
612 ~ );
|
|
Run auguwu/[email protected]
error: aborting due to 1 previous error
|
The logs for this run have expired and are no longer available.
Loading