IsExternal returns true if this Decl is external predicate.
()
| 244 | |
| 245 | // IsExternal returns true if this Decl is external predicate. |
| 246 | func (d Decl) IsExternal() bool { |
| 247 | return d.findDescr(DescrExternal, nil) |
| 248 | } |
| 249 | |
| 250 | // Reflects returns (true, prefix) if this predicate covers ("reflects") a name prefix type. |
| 251 | func (d Decl) Reflects() (Constant, bool) { |
no test coverage detected