Yongming Lai

Results 2 issues of Yongming Lai

Under certain circumstances, `*` is wrongly indicated as textmate scope `keyword.operator.address.go` when used as a multiplication operator (`keyword.operator.arithmetic.go`). To reproduce, use the following: ```go package main import "fmt" func main()...

Code to reproduce crash: ``` python hexrays.decompile(here()).treeitems[0] ``` Expected behaviour: - `hexrays.decompile(here()).treeitems[0]` should return first item in `cfuncptr_t.treeitems` Workaround: ``` python c = hexrays.decompile(here()) c.__deref__() c.treeitems[0] ```