Skip to content

Commit

Permalink
fix self-aware fn definitions not being finalized
Browse files Browse the repository at this point in the history
  • Loading branch information
vddCore committed Nov 14, 2023
1 parent 02f3219 commit 99b2348
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VirtualMachine/Ceres/Ceres.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<LangVersion>11.0</LangVersion>

<Version>1.3.2</Version>
<Version>1.3.3</Version>
<AssemblyName>Ceres</AssemblyName>
<AssemblyTitle>Ceres</AssemblyTitle>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ public override void Visit(SelfFnExpression selfFnExpression)
Visit(selfFnExpression.ParameterList);
Visit(selfFnExpression.Statement);
FinalizeChunk();
});
});

Expand Down

0 comments on commit 99b2348

Please sign in to comment.