15 lines
232 B
Go
15 lines
232 B
Go
package analyzer
|
|
|
|
// FuncSection represents a type definition section.
|
|
type FuncSection struct {
|
|
sectionBase
|
|
external bool
|
|
}
|
|
|
|
func (analyzer *analysisOperation) analyzeFuncSection () (
|
|
section Section,
|
|
err error,
|
|
) {
|
|
return
|
|
}
|