Timo

Results 37 issues of Timo

AST nodes can be pretty-printed via their `Display` impl and should output surface-looking javascript. At some point string interning was introduced, which means that it now requires access to `&StringInterner`...

AST

IMO the suggestion to use `c""` literals over a hardcoded `\0` byte string literal has some fairly strong upsides (no need to manually null-terminate it and the compiler checks for...

S-waiting-on-review
I-nominated

This simplifies the implementation of the `ptr_arg` lint a bit and: Fixes #13308 Fixes #10612 Currently, the lint checks if e.g. a `&String` parameter is only used in contexts where...

S-waiting-on-review

With this change we no longer require doc comments for `const _: ()` items as well as nested items in functions or other bodies. In both of those cases, rustdoc...

S-waiting-on-review

Closes #10202. This adds a new lint that checks for uses of the `.chars().enumerate()` position in a context where a byte index is required and suggests changing it to use...

S-waiting-on-review

This PR adds a new page to the book for more granular, "light" lint groups that are more informal than the real groups and can be easily added by anyone...

S-waiting-on-review

I noticed these missing checks when I found a bug in this piece of code: ```c s32 ret5 = IOS::IOCtl(this->hidFd, IOS::IOCTL_HID5_GET_VERSION, nullptr, 0, nullptr, 0); if (ret5 == 0x50001) {...