| 428 | ////////////////////////////////////////////////////////////////////////// |
| 429 | |
| 430 | bool BfFieldDef::IsEnumCaseEntry() |
| 431 | { |
| 432 | return ((mFieldDeclaration != NULL) && (BfNodeIsA<BfEnumEntryDeclaration>(mFieldDeclaration))) || |
| 433 | ((mFieldDeclaration == NULL) && (mIsConst) && (mDeclaringType->mTypeCode == BfTypeCode_Enum)); |
| 434 | } |
| 435 | |
| 436 | bool BfPropertyDef::IsVirtual() |
| 437 | { |
no outgoing calls
no test coverage detected