Igor Bagdamyan
Igor Bagdamyan
Please look at this. Migrating to latest C# is not a problem (it's always been this way - it's just that certain features require either special type or runtime support,...
I've been working on this for some time and instead of writing tests right away I've used ide manual checking. So now all of those tests are gone it seems...
Not sure if you need it actually. Lately with Inline if lambda and stuff I got a feeling that it's quite bothersome to manually type f to ([] f) and...
Often when modeling domain cleanly or trying to refactor some legacy code, I (and my friends / collegues) use type aliases to bring more "context" to function/type w.e. signature The...
While looking at this (https://gist.github.com/mrange/fbefd946dba6725a0b727b7d3fd81d6f) and my own delegate-allowing pipe experiment I've stumbled upon a limitation: InlineIfLambda doesn't support non-function parameters. E.g. |> can't be generic enough to inline lambdas...
Consider this example: ```powershell $q = 1,2,3 # or some multiline cli call $q | Where-Object { $_ -gt 1 } | ForEach-Object { "I'm $_" } ``` VSCode has...
# Feature Request **Is your feature request related to a problem?** Unable to use grpc exporter in BlazorWasm with current OpenTelemetry grpc exporter code. Currently `GrpcChannel` is created with default...
Please provide a succinct description of the issue. I've found a case where compiler is not able to compile the code it used to compile before. This particular flavor of...
I propose adding a code fixer that can automatically introduce "this" variable if symbol is not recognized but there is an accessible instance method or property with the same name....
This "sorta" fixes https://github.com/ant-druha/intellij-powershell/issues/182 Better than failing completely but stiill wrong so I need a hint how to do this properly: ```pwsh 1, 2, 3 | Foreach-Object { $_ }...