1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Allow anonymous 'using' fields

This commit is contained in:
Brian Fiete 2025-01-05 08:55:17 -08:00
parent 613f9c743a
commit 854122cb46
9 changed files with 323 additions and 256 deletions

View file

@ -679,6 +679,8 @@ public:
{
if (fieldDeclaration->mNameNode != NULL)
return fieldDeclaration->mNameNode;
if (fieldDeclaration->mTypeRef != NULL)
return fieldDeclaration->mTypeRef;
}
if (auto paramDeclaration = BfNodeDynCast<BfParameterDeclaration>(mFieldDeclaration))