q/src/core/IsExtern.go

7 lines
129 B
Go

package core
// IsExtern returns true if the function has no body.
func (f *Function) IsExtern() bool {
return f.Body == nil
}