IsSynthetic returns true if this Decl is synthetic (generated).
()
| 239 | |
| 240 | // IsSynthetic returns true if this Decl is synthetic (generated). |
| 241 | func (d Decl) IsSynthetic() bool { |
| 242 | return d.findDescr(DescrSynthetic, nil) |
| 243 | } |
| 244 | |
| 245 | // IsExternal returns true if this Decl is external predicate. |
| 246 | func (d Decl) IsExternal() bool { |