1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Update BfCompiler.cpp

Added a check for a Name property
This commit is contained in:
Jannis 2024-08-13 22:51:17 +00:00 committed by GitHub
parent f88e752303
commit e98681d668
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -961,6 +961,10 @@ void BfCompiler::EmitTestMethod(BfVDataModule* bfModule, Array<TestMethod>& test
{ {
testMethod.mName += "Ig"; testMethod.mName += "Ig";
} }
else if (fieldDef->mName == "Name")
{
testMethod.mName += "Ovwn";
}
} }
} }