Anton Curmanschii
Anton Curmanschii
Quick test ``` > print(Emitter) table: 008CB508 > e = Emitter() > e:emit('test') > function u() print('Hello') end > e:on('test', u) > e:emit('test') Hello > e:removeListener('test', u) Hello ``` I...
Hello, very nice project. I've been looking for a relatively simple C library for expression parsing that also supported symbolic differentiation and happened to find your project. Your code seems...
**OS/device including version:** Windows 7, bug exists for both Godot 3.3.2 and Godot 3.2.3. **Issue description:** While debugging an ordinary console C# application I am able to evaluate globals by...
- Typo fixes; - Make use of `nameof` for parameter names; - Make use of pattern matching with `is` instead of `as` and null check.
I often find myself in need of knowing the type of an `auto` declaration, especially when working with Phobos, where the returned type of most functions is implied by the...
I'm having a similar problem as [here](https://github.com/dlang-community/D-Scanner/issues/815), but it's even simpler. I assume [the fix](https://github.com/dlang-community/D-Scanner/pull/816) has not been merged into serve-d yet, or does it not cover my case? Consider...
How is autogobble supposed to work with file input? Is it supposed to do nothing, detect the indent from the entire file, or detect it from the given range? I'd...
The code generator for both services and the hub ignores methods that come from inherited interfaces. For example, in this piece of code, there will be no trace of Test1...
After I run the code generator, it writes to the console `failed to get metadata of System.Threading.Tasks.Task`, after which it breaks on the hub implementation example with the error `System.InvalidOperationException:...