func gotest.tools/v3/internal/source.FormatNode

8 uses

	gotest.tools/v3/internal/source (current package)
		source.go#L26: 	return FormatNode(args[argPos])
		source.go#L121: func FormatNode(node ast.Node) (string, error) {
		source.go#L143: 	out, err := FormatNode(n.Node)

	gotest.tools/v3/internal/assert
		assert.go#L119: 		x, err := source.FormatNode(binaryExpr.X)
		assert.go#L123: 		y, err := source.FormatNode(binaryExpr.Y)
		assert.go#L145: 		x, err := source.FormatNode(unaryExpr.X)
		assert.go#L156: 	formatted, err := source.FormatNode(expr)

	gotest.tools/v3/assert/cmp
		result.go#L87: 		"formatNode": source.FormatNode,