Jared Parsons

Results 531 comments of Jared Parsons

Dunno. Haven't tested yet. That's why I was looking for the docs 😄

@markwilkie how do I run a single test from the command line?

Agree, looks like an optimization bug where see the `ref` local as a redundant write and remove it. That optimization was written before we had `ref` locals and guessing it...

The post is a bit old but the behavior it describes still exists. It's very challenging to identity truly redundant floating point casts. A safe, but very conservative approach, is...

Consider this code ```csharp class Program { static void Main() { Console.WriteLine(M1(float.Epsilon)); Console.WriteLine(M2(float.Epsilon)); } static bool M1(float f) => (f / 2.0f) == 0; static bool M2(float f) => (float)(f...

Now that we have local SDK support in global.json, are these type of scripts even needed anymore?

I do think that we should address (2) in arcade. The ideal is almost that arcade adds four files: - `eng/common/ensure-dotnet.sh/cmd`: this just ensures that the acquisition of the dotnet...

The only symbols I would care about long term are builds that come from release branches. Everything else, don't think we need to keep them more than 3-6 months. Is...

@dotnet/roslyn-compiler PTAL