| 717 | } |
| 718 | |
| 719 | BfAstNode* GetNameNode() |
| 720 | { |
| 721 | if (auto fieldDecl = GetFieldDeclaration()) |
| 722 | return fieldDecl->mNameNode; |
| 723 | if (auto paramDecl = GetParamDeclaration()) |
| 724 | return paramDecl->mNameNode; |
| 725 | return NULL; |
| 726 | } |
| 727 | }; |
| 728 | |
| 729 | class BfPropertyDef : public BfFieldDef |
no outgoing calls
no test coverage detected