mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Added support for C-style vararg methods
This commit is contained in:
parent
89e6b0d577
commit
7741344fd2
16 changed files with 129 additions and 68 deletions
|
@ -211,7 +211,7 @@ void BfStructuralVisitor::Visit(BfQualifiedTypeReference* qualifiedTypeRef)
|
|||
Visit(qualifiedTypeRef->ToBase());
|
||||
}
|
||||
|
||||
void BfStructuralVisitor::Visit(BfDotTypeReference * typeRef)
|
||||
void BfStructuralVisitor::Visit(BfDotTypeReference* typeRef)
|
||||
{
|
||||
Visit(typeRef->ToBase());
|
||||
}
|
||||
|
@ -1411,6 +1411,8 @@ const char* Beefy::BfTokenToString(BfToken token)
|
|||
return ".";
|
||||
case BfToken_DotDot:
|
||||
return "..";
|
||||
case BfToken_DotDotDot:
|
||||
return "...";
|
||||
case BfToken_QuestionDot:
|
||||
return "?.";
|
||||
case BfToken_QuestionLBracket:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue