JohnnyMorganz
JohnnyMorganz
Calling `TypeDeclaration::new()` will always panic, because it tries to call `TokenReference::symbol("type ")` which is not a symbol. https://github.com/Kampfkarren/full-moon/blob/main/full-moon/src/ast/types.rs#L350 Whoops
For some inputs (eg. https://github.com/JohnnyMorganz/StyLua/issues/38, or other examples shown below), using full-moon produces a stack overflow. This is mostly noticeable in the debug version of full-moon, and is less likely...
In full_moon, the following code snippet is parsed as valid: ```lua if foo then break end function foo(bar) break end break ``` However, in all these situations, the `break` keyword...
If you have an expression node contained in parentheses, e.g. `(foo)` in `local x = (foo)`, and then call `.tokens()` on it, then it is expected that the output is...
Currently, the Autocomplete menu does not have a max size on the vertical axis, causing it to flow off the screen in certain cases (an example may be having lots...
In some situations, the OAuth2 server may provide an error response when a user attempts to log in. There should be a way to handle these situations, by displaying a...
This sort of leads off from #976 (and my comment there https://github.com/getfider/fider/pull/976#issuecomment-886804200), but currently OAuth profile information is only retrieved on first sign up when using fider, but never again....
### What version of rules_go are you using? v0.33.0 ### What version of gazelle are you using? v0.26.0 ### What version of Bazel are you using? 5.2.0 ### Does this...
The session_id provided during VOICE_STATE_UPDATE for the authenticated user is required for playing voice using external software (eg. lavalink) There should be a member property of voiceSessionId for the authenticated...
Currently, I am trying to get Lavalink to work with Discordia to use as an alternative voice system compared to the inbuilt Voice Management. A few issues come up during...