Seb C

Results 10 comments of Seb C

How about adding a tag to the line (block of lines) that shouldn't be mutated? Perhaps something like: `// +go-mutesting: blacklist` at the end of the line. Or for a...

In the context of the provided [example](https://go.googlesource.com/proposal/+/master/design/43651-type-parameters.md#no-parameterized-methods). Isn't: ```go func (S) Identity[T any](v T) T { return v } ``` syntactic sugar for: ```go func Identity[T any](_ S, v T)...

Does that mean we are reaching the limits of what can be achieved with implicit interfaces? What would the introduction of explicit interfaces do to help with this issue and...

Is there such a concept as a compile-time call-graph? From `p3` outwards, there is no way to tell how to instantiate `vi.Identity[int](0)` because p3 doesn't know what `v` is by...

Hi, Up-voting this issue. We are using go.mod but as we depend on the Context-aware methods, we cannot lock on a release and are forced to use a v0.0.0-commit-style dependency....

Correct but as noted above this is more volatile with go.mod because v0.0.0-commit is considered older than say v0.3.1

To add to this issue, we also have a situation that needs the use of the message key. This is in the context of the legacy.account.events that we consume from...

Hi So sorry about the silence: I wasn't aware you had raised an issue. Somehow I didn't get an email. I need to check my settings... The reason for saving...

Hi @andersthomson , Could you give more context about the need to keep cassettes in memory? `govcr` works by recording a request the first time it is made and replaying...