Steve Gilham

Results 135 comments of Steve Gilham

FWIW -- member functions attached to types do get sensible coverage reported against them; it's only the compiler-generated ones, the ones that don't have any source location, that don't get...

Looking back at the "Expected Behaviour" statement > Either plain vanilla record type declarations show up "white" because they're entirely uninteresting (much like C# class declarations, or empty-bodied constructors that...

By the uncovered branches shown in the ReportGenerator output, it is likely that it is showing the uncovered state of the `CompareTo` method which has a code-located sequence point rather...

I find by experiment that my code in PR #758 only handles the case where the record or union types are public. Long story short, in lines 387-8 ``` return...

I don't remember following up on this -- the last quarter of '17 was rather hectic for me IRL. The repro for the last comment would be simply changing the...

To get the cased form of the name, you have to crawl the directory from the root, and list out the contents. [Example code on Stack Overflow for this sort...

At the moment, I'm just looking for a sanity check here. If there were a Slack channel (which I am told does send alerts to the phone app) rather than...

Back on topic -- Having pondered it overnight, it didn't seem to make sense to put/leave the instrumentation _after_ a `throw`, so I put it to the test, by running...

Yes, it's an AppDomain-caused issue that makes interfaces even wider than you think. It can go away when everything is on .net 5 and later, and the root cause is...

While my previous issue reports in this area were caused by an assembly generated by an old version of the Mono C# compiler, the code base behind this one is...