go/ast.CallExpr.Pos (method, view implemented interface methods)

7 uses

	go/ast (current package)
		ast.go#L509: func (x *CallExpr) Pos() token.Pos       { return x.Fun.Pos() }

	go/types
		builtins.go#L897: 			check.dump("%v: trace() without arguments", call.Pos())
		call.go#L559: 		tparams, tmp = check.renameTParams(call.Pos(), sig.TypeParams().list(), sigParams)
		call.go#L585: 				atparams, tmp := check.renameTParams(call.Pos(), asig.TypeParams().list(), asig)
		call.go#L628: 			rsig = check.instantiateSignature(call.Pos(), call.Fun, sig, targs[:n], xlist)
		call.go#L633: 				sigParams = check.subst(call.Pos(), sigParams, makeSubstMap(tparams[:n], targs[:n]), nil, check.context()).(*Tuple)
		call.go#L646: 			arg.typ = check.instantiateSignature(call.Pos(), arg.expr, asig, targs[j:k], nil) // TODO(gri) provide xlist if possible (partial instantiations)