| 708 | } |
| 709 | |
| 710 | BfExpression* GetInitializer() |
| 711 | { |
| 712 | if (auto fieldDecl = GetFieldDeclaration()) |
| 713 | return fieldDecl->mInitializer; |
| 714 | if (auto paramDecl = GetParamDeclaration()) |
| 715 | return paramDecl->mInitializer; |
| 716 | return NULL; |
| 717 | } |
| 718 | |
| 719 | BfAstNode* GetNameNode() |
| 720 | { |
no outgoing calls
no test coverage detected