mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
Made open emit markers even more persistent
This commit is contained in:
parent
5763ac7d83
commit
e3b3089623
4 changed files with 36 additions and 10 deletions
|
@ -1030,6 +1030,22 @@ bool BfTypeDef::HasCustomAttributes()
|
|||
return false;
|
||||
}
|
||||
|
||||
bool BfTypeDef::HasParsingFailed()
|
||||
{
|
||||
auto parser = mTypeDeclaration->GetParser();
|
||||
if ((parser != NULL) && (parser->mParsingFailed))
|
||||
return true;
|
||||
|
||||
for (auto partial : mPartials)
|
||||
{
|
||||
parser = partial->mTypeDeclaration->GetParser();
|
||||
if ((parser != NULL) && (parser->mParsingFailed))
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
BfProject::BfProject()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue