This repository has been archived on 2024-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
arf/analyzer/func-section.go

16 lines
219 B
Go

package analyzer
// FuncSection represents a type definition section.
type FuncSection struct {
sectionBase
}
func (analyzer *analysisOperation) analyzeFuncSection () (
section Section,
err error,
) {
return
}