| 968 | } |
| 969 | |
| 970 | String BfTypeDef::GetAutoPropertyName(BfPropertyDeclaration* propertyDeclaration) |
| 971 | { |
| 972 | String name = "prop__"; |
| 973 | if (propertyDeclaration->mNameNode != NULL) |
| 974 | name += propertyDeclaration->mNameNode->ToString(); |
| 975 | return name; |
| 976 | } |
| 977 | |
| 978 | BfAstNode* BfTypeDef::GetRefNode() |
| 979 | { |
no test coverage detected