From 0d08ceda171b6560f699e800a3907c35a54b4f27 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Mon, 12 Nov 2018 17:54:43 +0100 Subject: [PATCH] Removed refactored code --- Upsilon/Binder/BoundAssignmenExpression.cs | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 Upsilon/Binder/BoundAssignmenExpression.cs diff --git a/Upsilon/Binder/BoundAssignmenExpression.cs b/Upsilon/Binder/BoundAssignmenExpression.cs deleted file mode 100644 index dc9304a..0000000 --- a/Upsilon/Binder/BoundAssignmenExpression.cs +++ /dev/null @@ -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; } - }*/ -} \ No newline at end of file