Alona Enraght-Moony

Results 32 issues of Alona Enraght-Moony

Currently, if their are no ci builds, a report isn't printed as here an error is returned https://github.com/rust-lang/cargo-bisect-rustc/blob/37e4366023669df1c9e68d0cf74cce1fa577c42a/src/main.rs#L1146-L1152 so this function exits early https://github.com/rust-lang/cargo-bisect-rustc/blob/37e4366023669df1c9e68d0cf74cce1fa577c42a/src/main.rs#L615-L619 It would be nice to show...

Apparently mrustc can [build rustc 1.39 now](https://github.com/thepowersgang/mrustc/blob/master/build-1.39.0.sh). Doing this would reduce the bootstrap lenght, although I'm not sure its worth the effort to implement this, as it would still take...

```rust #[derive(Default)] struct Foo { x: i32, y: i32, z: i32, } #[autodefault::autodefault] fn foos() -> Vec { let f1 = Foo { x: 1 }; vec![Foo { y: 1...

Currently https://lib.rs/crates/fxhash and https://crates.io/crates/fxhash both show `let mut hashmap = FxHashMap::new();`, which is wrong (#1) The README here has been fixed, but it would be great if a new version...

With the following input: ``` binding-names = {name, ","}, name, ",", name ; ``` `kgt` segfaults when producing html5 ``` $ cat demo.ebnf binding-names = {name, ","}, name, ",", name...

bug

```shell $ ./build/bin/kgt -e rrutf8 -l iso-ebnf < examples/ebnf2.ebnf $ echo $? 1 ``` I'm not sure if this their is a different dialect this is suposed to be, or...

### Input C/C++ Header ```C++ typedef long double foo ``` ### Bindgen Invocation ``` $ bindgen input.h ``` ### Actual Results ```rust /* automatically generated by rust-bindgen */ pub type...

enhancement
help wanted

In `queue/rust` it looks like ![image](https://user-images.githubusercontent.com/28781354/110980902-44d66d80-835e-11eb-853a-60675904c4d7.png) (assignee gets word-break'd, head-ref doesn't) This is because their is a variable number of collumns in the table, and I only checked for `queue/all`...

With this grammar: ```rust grammar(); NestedExpression: () = { "N", "(" Expression ")" } IndexingExpression: () = { "[" "]", } ObjectSelector: () = { "N", IndexingExpression, } VariadicExpression: ()...

This grammer ```rust grammar(); pub Root = { } Interface = { Doc "interface" } Struct = { Doc "struct" } Doc = { "doc" } Name = { "name"...