Chernyavsky Andrew
Chernyavsky Andrew
Hi there, Setting incorrect size of the fixed-size array causes IDE to crash. Adding `new` or `scope` in current case also crashes IDE, even if size equals to count of...
Hi there, Code like `typeof(Program).[Friend]mTypeCode` causes IDE to crash, if that is used in comptime. Declaring a variable that will hold the `Type` first, does not trigger a crash. It...
Hi there, Renaming through context-menu (right mouse button -> rename): https://github.com/beefytech/Beef/blob/master/IDE/src/ui/ProjectPanel.bf#L2727 Moving files from one folder to another: https://github.com/beefytech/Beef/blob/master/IDE/src/ui/ProjectPanel.bf#L284 Moving files using cut/paste: https://github.com/beefytech/Beef/blob/master/IDE/src/ui/ProjectPanel.bf#L2130 Toggling `ignore` flag on files: https://github.com/beefytech/Beef/blob/master/IDE/src/ui/ProjectPanel.bf#L3187...
Hi there, Mixin `Object.Dispose` makes IDE think that `DisposableFoo` has defined `Dispose`. IDE crashes on build. If `DisposableFoo.Dispose` is defined, then everything builds and runs perfectly fine. **crash-dump: [disposable-foo.zip](https://github.com/beefytech/Beef/files/9945480/disposable-foo.zip)** ```beef...
Hi there, Feature `Rename Symbol` causes IDE to silently crash after renaming `typealias Foo = Bar` to `typealias Bar = Bar` This happens only if typealias is defined inside a...
Hi there, After starting debugging or when trying to compile workspace with BeefBuild.exe, it will crash because of the callback null-check inside if-statement with result check. This happens only when...
Hi there, `Rename Symbol` does not affect the references specified in `offsetof`. It affects the member in `offsetof` when we start renaming from there, but it does not affect other...
Hi there, Checking if `target` is null inside mixin for `IDisposable` causes IDE to crash. ```beef namespace System { extension IDisposable { public static mixin DisposeDeleteNullify (IDisposable target) { //...
Hi there, There was an issue with `QuickFind.SelectAllMatches()`, where after selecting all matches and pressing `Shift+Home/End`, selections will be incorrect, because the swap of `EditSelection?` was on `Value` and not...
Hi there, Documentation written in comment blocks near enum case does not shows in certain cases. In some cases documentation is not showing when enum type is omitted. This issue...