Skip to content

Commit

Permalink
Update FunctionBodyCodegen.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
LPeter1997 committed Oct 13, 2023
1 parent d7a1808 commit fd9b883
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,10 @@ public override IOperand VisitCallExpression(BoundCallExpression node)
var irFunc = ExtractIrFunction(proc);
if (irFunc is not null)
{
if (receiver is not null)
{
throw new System.NotImplementedException();
}
irFunc.Codegen(this, callResult, args);
}
else
Expand Down

0 comments on commit fd9b883

Please sign in to comment.