mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
Fixed failed explicit indexer interface conformance declaration
This commit is contained in:
parent
c3bc2bc67c
commit
b50fbdb51d
1 changed files with 6 additions and 0 deletions
|
@ -6608,6 +6608,12 @@ BfAstNode* BfReducer::ReadTypeMember(BfAstNode* node, int depth)
|
|||
int blockAfterIdx = mVisitorPos.mReadPos + 1;
|
||||
BfAstNode* blockAfterPos = nameIdentifier;
|
||||
BfPropertyDeclaration* propertyDeclaration = NULL;
|
||||
|
||||
if ((indexerThisToken != NULL) && (mVisitorPos.GetNext() != indexerThisToken))
|
||||
{
|
||||
indexerThisToken = NULL;
|
||||
}
|
||||
|
||||
if (indexerThisToken != NULL)
|
||||
{
|
||||
auto indexerDeclaration = mAlloc->Alloc<BfIndexerDeclaration>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue