Denis Proshutinskii

Results 8 issues of Denis Proshutinskii

Right now all loops (`for i=0 to 10 do`, `for el in seq do`, `while smth do`) are valid expressions that always return `unit`. I propose we allow `break` keyword...

probably not
area: loops

**Describe the bug** I've stumbled at problem where application randomly crushes with `System.InvalidOperationException: Invalid size returned for Measure`. It's caused by one of layers in `VisualLayerManager` : it receives infinite...

bug

**Describe the bug** Whenever I try to close window from Avalonia control, exception is thrown. Problem is that `IInputRoot` doesn't have visual parent and therefore cannot convert point. Adding check...

bug

Add completion for well-known properties in project items. [Documentation](https://docs.microsoft.com/en-us/visualstudio/msbuild/common-msbuild-project-items?view=vs-2019#projectreference) Missing * GlobalPropertiesToRemove * SetConfiguration * SetPlatform * SetTargetFramework * SkipGetTargetFrameworkProperties Because `ProjectReference` transforms to `Reference` also missing * HintPath *...

enhancement
area/completions

Compiler generates method closure when that's unneeded. **Repro steps** Compile and run code ```fsharp let handler (x: string) (y: int) = System.Console.WriteLine(x, y) let invokeHandler (foo: System.Action) = for parameter...

Feature Request
Needs-RFC
Theme-Performance

Our application crushes with following stacktrace: ``` CoreCLR Version: 8.0.1024.46610 .NET Version: 8.0.10 Description: The process was terminated due to an unhandled exception. Exception Info: System.InvalidOperationException: Visual was invalidated during...

Our application have several popups, one of which is shown when mouse is over member. Lifetime of all popups in controlled manually and `CompletionWindowBase.Hide()` is called when selection is changed....