Skip to content

Commit e02c97e

Browse files
committed
todo for #478
1 parent 9c2afa2 commit e02c97e

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

test/FastExpressionCompiler.LightExpression.UnitTests/NestedLambdasSharedToExpressionCodeStringTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public void Issue478_Debug_info_should_be_included_into_nested_lambdas()
2121
{
2222
var e = CreateExpression();
2323

24-
var f = e.CompileFast(true, CompilerFlags.EnableDelegateDebugInfo);
24+
var f = e.CompileFast(true, CompilerFlags.EnableDelegateDebugInfo); // todo: @wip #478 CompileFast should PrintCSharp and PrintIL in Debug configuration, if the EnablePrintCSharp, EnablePrintIL is set
2525

2626
Asserts.IsNotNull(f);
2727
}

test/FastExpressionCompiler.TestsRunner/Program.cs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ public static void Main()
1414
// ILGeneratorTools.DisableILGeneratorPooling = true;
1515
// LightExpression.ILGeneratorTools.DisableILGeneratorPooling = true;
1616

17-
new Issue316_in_parameter().Run();
18-
new LightExpression.IssueTests.Issue55_CompileFast_crash_with_ref_parameter().Run();
19-
new LightExpression.IssueTests.Issue341_Equality_comparison_between_nullable_and_null_inside_Any_produces_incorrect_compiled_expression().Run();
20-
new LightExpression.IssueTests.Issue347_InvalidProgramException_on_compiling_an_expression_that_returns_a_record_which_implements_IList().Run();
2117
new LightExpression.UnitTests.NestedLambdasSharedToExpressionCodeStringTest().Run();
18+
19+
// new Issue316_in_parameter().Run();
20+
// new LightExpression.IssueTests.Issue55_CompileFast_crash_with_ref_parameter().Run();
21+
// new LightExpression.IssueTests.Issue341_Equality_comparison_between_nullable_and_null_inside_Any_produces_incorrect_compiled_expression().Run();
22+
// new LightExpression.IssueTests.Issue347_InvalidProgramException_on_compiling_an_expression_that_returns_a_record_which_implements_IList().Run();
2223
// new Issue441_Fails_to_pass_Constant_as_call_parameter_by_reference().Run();
2324
// new Issue461_InvalidProgramException_when_null_checking_type_by_ref().Run();
2425

0 commit comments

Comments
 (0)