Elliott Stoneham

Results 21 issues of Elliott Stoneham

The example program at https://github.com/masatana/go-textdistance does not go2hx correctly. ```go package main import ( "fmt" "github.com/masatana/go-textdistance" ) func main() { s1 := "this is a test" s2 := "that is...

```go // Geometry is a Go interface type Geometry interface { Area() float64 // get the area of the shape Perim() float64 // get the perimeter of the shape }...

Reported via e-mail by: Cristian Adamo from Argentina: > When I run the test some fail and we used in my code I can't get rid of errors like this...

Following upstream changes to SSA, this code does not compile. After changing lines 254/5 of interp_test.go to: ``` if mainPkg == nil && len(initialPkgs) == 1 { testmainPkg := prog.CreateTestMainPackage(initialPkgs[0])...

The release of go1.11beta1 heralds the imminent arrival of the GOARCH=wasm GOOS=js target. In the long term I expect the WASM to supersede GopherJS, but in the medium term both...

enhancement
help wanted

[Here](https://arxiv.org/pdf/2006.09973.pdf) is a really interesting paper on where `unsafe` is used in the most popular projects of the Go ecosystem. I found the abstract on page 1, and tables at...

discussion
not planned for beta

Note also that pointers need to have unique values (rather than always being `1`, as now), as pointers are often used as map keys. From the above `makeKey()` code: ```haxe...

There is an example go2hx library in [go2hxdoc/example-project](https://github.com/go2hx/go2hxdoc/tree/master/example-project/example-haxelib). ### Issue 1 The [command line to run a test against that library](https://github.com/go2hx/go2hxdoc/blob/627346824bbcdb5bff47598a4f4bda3c3ee0cd2b/example-project/example-test/test.sh#L9) is ```sh haxe -m Test -lib go2hx -lib go2hxdoc_example...

tooling

``` Elliotts-MacBook-Pro15:gojit elliott$ go test unexpected fault address 0x1000 fatal error: fault [signal 0xb code=0x1 addr=0x1000 pc=0x1000] goroutine 20 [running]: runtime.throw(0x4187c48, 0x5) /usr/local/go/src/runtime/panic.go:527 +0x90 fp=0xc82003ce38 sp=0xc82003ce20 runtime.sigpanic() /usr/local/go/src/runtime/sigpanic_unix.go:27 +0x2ba fp=0xc82003ce88...