Removed refactored code

This commit is contained in:
Deukhoofd 2018-11-12 17:54:43 +01:00
parent 276b267045
commit 0d08ceda17
No known key found for this signature in database
GPG Key ID: B4C087AC81641654
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
using Upsilon.BaseTypes;
namespace Upsilon.Binder
{
/*
public class BoundAssignmenExpression : BoundExpression
{
public BoundAssignmenExpression(VariableSymbol variable, BoundExpression expression)
{
Variable = variable;
Expression = expression;
}
public VariableSymbol Variable { get; }
public BoundExpression Expression { get; }
public override BoundKind Kind => BoundKind.BoundAssignmentExpression;
public override Type Type { get; }
}*/
}