Skip to content

Commit 1837907

Browse files
committed
Remove DebugView and writer
1 parent e280786 commit 1837907

File tree

2 files changed

+1
-367
lines changed

2 files changed

+1
-367
lines changed

src/Hyperbee.Expressions/Transformation/DebugViewWriter.cs

Lines changed: 0 additions & 355 deletions
This file was deleted.
Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Globalization;
2-
using System.Linq.Expressions;
1+
using System.Linq.Expressions;
32

43
namespace Hyperbee.Expressions.Transformation;
54

@@ -12,14 +11,4 @@ internal record LoweringResult
1211
public ParameterExpression[] ScopedVariables { get; internal set; }
1312

1413
public IEnumerable<NodeExpression> Nodes => Scopes.SelectMany( scope => scope.Nodes );
15-
16-
internal string DebugView //BF ME - does this still have value?
17-
{
18-
get
19-
{
20-
using StringWriter writer = new StringWriter( CultureInfo.CurrentCulture );
21-
DebugViewWriter.WriteTo( writer, Scopes, Variables );
22-
return writer.ToString();
23-
}
24-
}
2514
}

0 commit comments

Comments
 (0)