delve/service/test
Derek Parker 4136512ef3 pkg/proc: Allow function calls on non-struct types
Removes the restriction that the DWARF type for the receiver of a method
must be a TypeDef. This seems reasonable in practice, but it turns out
Go DWARF does not consider

```
type X int
```

to be a typedef. This patch also allows for calling a method where the
receiver is not used or passed in, such as:

```
func (_ X) Method() { println("why") }
```
2020-02-20 10:31:48 +01:00
..
common_test.go terminal: let 'list' work on file:line exprs that don't map to code (#1728) 2019-10-25 09:59:18 -07:00
integration1_test.go proc: implement stacktrace of arm64 (#1780) 2020-01-21 09:11:20 -08:00
integration2_test.go pkg/proc: Judge the validity of addr ranges when disasm. (#1872) 2020-02-19 08:46:03 -08:00
variables_test.go pkg/proc: Allow function calls on non-struct types 2020-02-20 10:31:48 +01:00