Skip to content

Commit 739b7b1

Browse files
committed
small todos
1 parent 6228ca1 commit 739b7b1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/FastExpressionCompiler/ILReader.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ public ILReader(IILProvider ilProvider, ITokenResolver tokenResolver)
182182
_byteArray = ilProvider?.GetByteArray() ?? throw new ArgumentNullException(nameof(ilProvider));
183183
}
184184

185+
// todo: @perf implement optimized IEnumerator<OpCode> which does not need to allocate ILInstruction objects
185186
public IEnumerator<ILInstruction> GetEnumerator()
186187
{
187188
var position = 0;

test/FastExpressionCompiler.TestsRunner/Program.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ public class Program
99
{
1010
public static void Main()
1111
{
12+
// new Issue55_CompileFast_crash_with_ref_parameter().Run();
13+
1214
// todo: @wip add to FEC, check the possibility of the increment compilation and the artifacts reusability
13-
new LightExpression.UnitTests.ConstantAndConversionTests().Run();
15+
// new LightExpression.UnitTests.ConstantAndConversionTests().Run();
1416

1517
// new LightExpression.IssueTests.Issue461_InvalidProgramException_when_null_checking_type_by_ref().Run();
1618
// new Issue341_Equality_comparison_between_nullable_and_null_inside_Any_produces_incorrect_compiled_expression().Run();

0 commit comments

Comments
 (0)