7 lines
129 B
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
|
|
}
|