16 lines
219 B
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
|
|
}
|