// Sample Go file for tree-sitter symbol extraction tests.
package sample
import "fmt"
// ExportedFunction is a public function (uppercase).
func ExportedFunction(x int) int
// unexportedFunction is a private function (lowercase).
func unexportedFunction()
// MyStruct is a sample struct type.
type MyStruct struct
// Reader is a sample interface type.
type Reader interface
// String is a method with receiver on MyStruct.
func () string
// helper is an unexported method.
func () int