Maciej Hirsz
Maciej Hirsz
A good suggestion [came up on reddit](https://www.reddit.com/r/rust/comments/g3pfaw/logos_011_is_out_iterators_callbacks_and_stateful/fnu70z0/). Could add an extra flag into the top `#[logos]` attribute that points to a path to a dot file that can be used...
+ MDN: https://developer.mozilla.org/en-US/docs/Web/API/Window/devicePixelRatio + stdweb: https://docs.rs/stdweb/0.4.17/stdweb/web/struct.Window.html#method.device_pixel_ratio + Elaboration: https://www.khronos.org/webgl/wiki/HandlingHighDPI Basically on hidpi/retina screens, the canvas `width` and `height` properties need to be multiplied by `window.devicePixelRatio` (rounded or floored), with CSS...
Fix `Module` soundness where it's possible to get a borrow of body while dropping the arena it's allocated on. Related to #121.
`super()` and `super.*` support, self explanatory.
Apparently we are missing following tokens: + ~`&&=` should be `OperatorLogicalAndAssign`~* + ~`||=` should be `OperatorLogicalOrAssign`~* + `#` ? proposed use for private fields + `@` ? proposed use for...
I think one of the issues we might have right now that isn't super obvious is that it's actually hard to see anything working. Having to download, install and compile...
A lot of the code is meant to be self explanatory, but some parts could use extra documentation, such as the different enum variants contained in `grammar.rs`.
I figured this deserves an issue rather than me pinging @not-fl3 on Discord. For 0.4 API I think the way to go is provide a thin wrapper for all the...
+ English language support now needs to be enabled by a feature if default features are disabled. + Added `CustomLanguage` that allows wordlist to be provided from the outside. +...
This PR introduces a `CappedBuffer` wrapper around a `Vec` which effectively enforces buffer capacity limits. Exceeding capacity limits will force a disconnect. There are changes to the settings involved, so...