| 504 | } |
| 505 | |
| 506 | bool BfMethodDef::HasBody() |
| 507 | { |
| 508 | if (auto methodDeclaration = GetMethodDeclaration()) |
| 509 | return methodDeclaration->mBody != NULL; |
| 510 | if (auto methodDeclaration = GetPropertyMethodDeclaration()) |
| 511 | { |
| 512 | auto body = methodDeclaration->mBody; |
| 513 | return (body != NULL) && (!BfNodeIsA<BfTokenNode>(body)); |
| 514 | } |
| 515 | return false; |
| 516 | } |
| 517 | |
| 518 | BfMethodDef::~BfMethodDef() |
| 519 | { |
no outgoing calls
no test coverage detected