Results 26 issues of Roland Leißa

Would be really cool to have an option to render the ToC on the right hand side of the main area similar to this: https://rise-lang.org/doc/language-reference/rise-types/ Right now, the ToC box...

enhancement

This causes some ugliness in the code which I want to get rid off - in particular before we try to merge some of the CoC stuff.

enhancement

WFV mode does not support recurrences: ```Rust let mut a = 0; for i in vectorize(0, n) { f(a); a = A(i); } ``` Switching to loop regions in RV...

enhancement

### Describe the issue A typical idiom from the [copy & swap idiom](https://stackoverflow.com/a/3279550) is to do sth like this: ```c++ class MyClass { int i; std::unordered_set std_set; absl::flat_hash_set absl_set; //...

### Describe the issue You can't swap an `absl::FixedArray`. There is neither a member function nor does the default `std::swap` work: https://godbolt.org/z/3foo8xaPK ### Steps to reproduce the problem see above...

This PR adds a proper AST that the parser constructs before emitting actual Thorin code. While this adds some boilerplate it also reduces a lot of weird hacks/workarounds in the...

Plz first give #273 your blessing. * removes block expressions: `{ d* e }`. simply use `d* e` instead and if you really want to use delimiters use a tuple:...

I'm 99% sure it's also broken on current master but most of the time we won't notice because the ownerless Var will be optimized away. However, we sometimes have the...

bug