Skip to content

Commit

Permalink
(#354) Functions: add TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
ForNeVeR committed Feb 21, 2023
1 parent 3833c05 commit bfbbec1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cesium.CodeGen/Ir/BlockItems/FunctionDeclaration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public FunctionDeclaration(string identifier, FunctionType functionType, string?

public IBlockItem Lower(IDeclarationScope scope)
{
return this;
return this; // TODO: scope.ResolveType(_functionType)
}

public void EmitTo(IEmitScope scope)
Expand Down
2 changes: 1 addition & 1 deletion Cesium.CodeGen/Ir/BlockItems/FunctionDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public FunctionDefinition(Ast.FunctionDefinition function)

public IBlockItem Lower(IDeclarationScope scope)
{
return this;
return this; // TODO: scope.ResolveType(_functionType)
}

public void EmitTo(IEmitScope scope)
Expand Down

0 comments on commit bfbbec1

Please sign in to comment.