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

15 lines
232 B
Go
Raw Normal View History

2022-10-18 19:00:17 +00:00
package analyzer
2022-10-19 17:27:48 +00:00
// FuncSection represents a type definition section.
type FuncSection struct {
sectionBase
external bool
2022-10-19 17:27:48 +00:00
}
func (analyzer *analysisOperation) analyzeFuncSection () (
section Section,
err error,
) {
return
}