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/accessors.go

12 lines
191 B
Go
Raw Normal View History

2022-09-08 10:59:49 -06:00
package analyzer
func (section TypeSection) Kind () (kind SectionKind) {
kind = SectionKindType
return
}
func (section TypeSection) Name () (name string) {
name = section.name
return
}