oxcrow
oxcrow
Hello, I think it will be *extremely useful* to auto-generate setters that return a mutable reference to `self`. We could use them to chain together setter operations, and simplify our...
Hi, Consider these statements ... ```rust let x = 1; let const x = 1; fn main() {} fn main() -> void {} ``` We often have such instances where...
Hi everyone, pest and pest-derived seem to accept grammar that has rust's reserved keywords, such as `type`, `struct`, `mod` etc. However, pest-ast fails. ```rust #[derive(Debug, Clone, FromPest)] #[pest_ast(rule(Rule::type))] //
Hello, I observed that Fortran symbols are not grouped/indented correctly. Data members inside derived types (i.e structs/classes)) are not grouped correctly in the outline, and neither are the modules or...
Fortran code becomes verbose, thus using construct names on do loops, blocks, etc. is common way to keep track. Although they're so widely used in Fortran, they're not supported by...
**Is your feature request related to a problem? Please describe.** Yes. I would like to use `interface` to "overload" methods. The auto-completion suggestions works for the methods, but fails to...
Hi everyone, I'm loving using pest for building a compiler. I would request to collect the common issues that happen while using pest from users, and documenting them. To help...
Hello, I noticed that, - In C/C++/Fortran MPI, a crash on any MPI ranks used to terminate every other rank, and halt execution immediately. - In rsmpi, a crash on...
Hello, I had a lot of difficulty to send/recv complex datatypes using rsmpi. I found that casting down to a 1D array slice using `std::mem::transmute` allowed me to send the...
Hi! This is an amazing theme. Thank you for creating and sharing it.