Skip to content

Commit

Permalink
Lots of renames
Browse files Browse the repository at this point in the history
  • Loading branch information
LPeter1997 committed Nov 3, 2023
1 parent df7aef4 commit 459fae2
Show file tree
Hide file tree
Showing 11 changed files with 129 additions and 1,084 deletions.
1 change: 0 additions & 1 deletion src/Draco.Compiler/Draco.Compiler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
<ItemGroup>
<AdditionalFiles Include="Internal\Syntax\Syntax.xml" />
<AdditionalFiles Include="Internal\BoundTree\BoundNodes.xml" />
<AdditionalFiles Include="Internal\UntypedTree\UntypedNodes.xml" />
<AdditionalFiles Include="Internal\Symbols\WellKnownTypes.xml" />
</ItemGroup>

Expand Down
425 changes: 0 additions & 425 deletions src/Draco.Compiler/Internal/Binding/Binder_BoundExpression.cs

This file was deleted.

73 changes: 0 additions & 73 deletions src/Draco.Compiler/Internal/Binding/Binder_BoundLvalue.cs

This file was deleted.

53 changes: 0 additions & 53 deletions src/Draco.Compiler/Internal/Binding/Binder_BoundStatement.cs

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
using System.Diagnostics;
using Draco.Compiler.Api.Syntax;
using Draco.Compiler.Internal.BoundTree;
using Draco.Compiler.Internal.Solver;
using Draco.Compiler.Internal.Symbols;
using Draco.Compiler.Internal.Symbols.Source;
using Draco.Compiler.Internal.UntypedTree;

namespace Draco.Compiler.Internal.Binding;

internal partial class Binder
{
protected void ConstraintReturnType(SyntaxNode returnSyntax, UntypedExpression returnValue, ConstraintSolver constraints)
protected void ConstraintReturnType(SyntaxNode returnSyntax, BoundExpression returnValue, ConstraintSolver constraints)
{
var containingFunction = (FunctionSymbol?)this.ContainingSymbol;
Debug.Assert(containingFunction is not null);
Expand Down
Loading

0 comments on commit 459fae2

Please sign in to comment.