mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
Struct cast fix, deferred block fix
This commit is contained in:
parent
2fb4b14e50
commit
8b17718fed
8 changed files with 82 additions and 18 deletions
|
@ -250,12 +250,14 @@ void BfSourceClassifier::Visit(BfThisExpression* thisExpr)
|
|||
{
|
||||
HandleLeafNode(thisExpr);
|
||||
Visit((BfAstNode*)thisExpr);
|
||||
SetElementType(thisExpr, BfSourceElementType_Keyword);
|
||||
}
|
||||
|
||||
void BfSourceClassifier::Visit(BfBaseExpression* baseExpr)
|
||||
{
|
||||
HandleLeafNode(baseExpr);
|
||||
Visit((BfAstNode*)baseExpr);
|
||||
SetElementType(baseExpr, BfSourceElementType_Keyword);
|
||||
}
|
||||
|
||||
void BfSourceClassifier::Visit(BfMemberReferenceExpression* memberRefExpr)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue