Skip to content

Commit

Permalink
chore: remove todo
Browse files Browse the repository at this point in the history
  • Loading branch information
Zxilly committed Jun 8, 2024
1 parent 7c5910b commit d115ffb
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions internal/disasm/interface_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ type TestFileWrapper struct {
}

func (t TestFileWrapper) DWARF() (*dwarf.Data, error) {
//TODO implement me
panic("implement me")
panic("not reachable")
}

func (t TestFileWrapper) Text() (textStart uint64, text []byte, err error) {
Expand All @@ -32,19 +31,19 @@ func (t TestFileWrapper) GoArch() string {
}

func (TestFileWrapper) ReadAddr(_, _ uint64) ([]byte, error) {
panic("implement me")
panic("not reachable")
}

func (TestFileWrapper) LoadSymbols(_ func(name string, addr uint64, size uint64, typ entity.AddrType) error) error {
panic("implement me")
panic("not reachable")
}

func (TestFileWrapper) LoadSections() map[string]*entity.Section {
panic("implement me")
panic("not reachable")
}

func (TestFileWrapper) PclntabSections() []string {
panic("implement me")
panic("not reachable")
}

func TestNewExtractorNoText(t *testing.T) {
Expand Down

0 comments on commit d115ffb

Please sign in to comment.