Removed refactored code

This commit is contained in:
2018-11-12 17:54:43 +01:00
parent 276b267045
commit 0d08ceda17

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; }
}*/
}