mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
Handle attributed identifiers
This commit is contained in:
parent
b364760105
commit
1223395a01
2 changed files with 6 additions and 0 deletions
|
@ -4947,6 +4947,11 @@ void DbgExprEvaluator::Visit(BfIdentifierNode* identifierNode)
|
|||
Fail("Identifier not found", identifierNode);
|
||||
}
|
||||
|
||||
void DbgExprEvaluator::Visit(BfAttributedIdentifierNode* node)
|
||||
{
|
||||
VisitChild(node->mIdentifier);
|
||||
}
|
||||
|
||||
void DbgExprEvaluator::Visit(BfMixinExpression* mixinExpr)
|
||||
{
|
||||
mResult = LookupIdentifier(mixinExpr, false, NULL);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue