delve/pkg/proc/eval_go117.go
Alessandro Arzilli 6ea826c363
proc: better error messages for ambiguous function calls/type casts (#2903)
Try to produce better error messages when we can't distinguish between
a function call and a type cast.

Fixes #2902
2022-02-22 09:55:59 -08:00

11 lines
112 B
Go

//go:build !go1.18
// +build !go1.18
package proc
import "go/ast"
type astIndexListExpr struct {
ast.Expr
}