leonxiong516

Results 3 issues of leonxiong516

have two tengo file m.tengo ```go fmt := import("fmt") export func() { fmt.println("") s := [] s["A"] = 1 } ``` main.tengo ```go m := import("m") m() ``` ./tengo main.tengo...

### The following program `sample.go` triggers an unexpected result ```go package main import "fmt" func main() { s := make([]map[string]string, 0) m := make(map[string]string) m["m1"] = "m1" m["m2"] = "m2"...

#### Proposal The current code panic cannot locate the code location. Can you provide panic related information, such as the name and line number of the calling function #### Background...

enhancement
area/core