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

Internal protection, 'using internal <type or namespace>;`

This commit is contained in:
Brian Fiete 2020-10-14 11:33:41 -07:00
parent 7349cdf50f
commit 6b27f0f0b2
25 changed files with 313 additions and 96 deletions

View file

@ -2755,12 +2755,12 @@ void BfPrinter::Visit(BfUsingDirective* usingDirective)
ExpectNewLine();
}
void BfPrinter::Visit(BfUsingStaticDirective * usingDirective)
void BfPrinter::Visit(BfUsingModDirective* usingDirective)
{
ExpectNewLine();
VisitChild(usingDirective->mUsingToken);
ExpectSpace();
VisitChild(usingDirective->mStaticToken);
VisitChild(usingDirective->mModToken);
ExpectSpace();
VisitChild(usingDirective->mTypeRef);