func()

in toutoumomoma.go [103:114]


func (f *File) Type() string {
	switch f.file.(type) {
	case *elfFile:
		return "elf"
	case *machoFile:
		return "mach-o"
	case *peFile:
		return "pe"
	default:
		panic("unreachable")
	}
}