Matt Johnson-Pint
Matt Johnson-Pint
I came to a similar conclusion as @alexlapa. HAXM doesn't do anything on macOS now. See https://github.com/ReactiveCircus/android-emulator-runner/discussions/286
@thomassth - that's by design. It matches EcmaScript specification for `Date.prototype.toString`, not RFC2822. https://262.ecma-international.org/13.0/#sec-date.prototype.tostring
Any update here? I tried `go get github.com/elliotchance/gedcom` , but it installs `v38.0.0+incompatible`, not the latest v39.
``` go get github.com/elliotchance/[email protected] ``` gives: ``` go: github.com/elliotchance/[email protected]: invalid version: module contains a go.mod file, so module path must match major version ("github.com/elliotchance/gedcom/v39") ``` So I tried also: ```...
First time doing something like this, so I hope I got it right. All modules build, and all tests pass. Locally it works great, using a `replace` statement in my...
It worked. I can now simply do: ``` go get github.com/elliotchance/gedcom/v39 ``` And in my `go.mod`, it adds: ``` require github.com/elliotchance/gedcom/v39 v39.6.0 ``` Now I can import just fine and...
I found a better workaround. We can allow the delegates to be generated and used as normal (including `[NullAllowed]` attributes), then have the build replace `public` with `internal` in the...
Actually, while it looks like `[NullAllowed]` is working on the input parameters, `[return: NullAllowed]` does not work. And if I try to replace to workaround, I get `error CS8600: Converting...
Ok. Nullable issue is in #17109. This one can stay focused on the internal visibility.
Hi. Just wanted to ask anyone who's interested in this topic to chime in on the other issue, starting here: https://github.com/getsentry/sentry/issues/37716#issuecomment-1472884462. Thanks.