Anton Gusev
Anton Gusev
This is the branch containing my ongoing efforts to help document the library (https://github.com/audulus/rui/issues/10). Please do not merge them yet. If you have any problems with the docs, please tell...
Currently autocompletion doesn't work with https://dlang.org/spec/class.html#alias-this . Example: ```dlang struct Scoped(T) { T payload; alias payload this; @disable this(); @disable this(this); ~this() { .destroy(payload); } } class DisplayArea: DrawingArea {...
This edit allows breakpoints in assembly files, which allows for much better debug experience. I've tried this with NASM and the vscode C/C++ debugger and it worked perfectly.
When declaring a record within an auto implicit parameter block, it is for some reason impossible to use generic types declared in the same block. The same notably does *not*...
`%runElab` behaves inconsistently between declaration and expression modes: `check` doesn't perform actual type checking when called from a declaration mode. # Steps to Reproduce ```idris import Language.Reflection %language ElabReflection %runElab...