Skip to content

Commit 69d41f2

Browse files
committed
better todos
1 parent 372b228 commit 69d41f2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/FastExpressionCompiler/FastExpressionCompiler.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2122,12 +2122,13 @@ public static bool TryEmit(Expression expr,
21222122
case ExpressionType.ExclusiveOr:
21232123
case ExpressionType.LeftShift:
21242124
case ExpressionType.RightShift:
2125-
// todo: @wip #468 add interpretation when those node types are supported
2125+
// todo: @wip #472 add interpretation when those node types are supported
21262126
return TryEmitArithmetic(((BinaryExpression)expr).Left, ((BinaryExpression)expr).Right, nodeType, exprType, paramExprs, il,
21272127
ref closure, setup, parent);
21282128

21292129
case ExpressionType.AndAlso:
21302130
case ExpressionType.OrElse:
2131+
// todo: @wip but where is `.Not` ?
21312132
// todo: @wip interpreter
21322133
return TryEmitLogicalOperator((BinaryExpression)expr, nodeType, paramExprs, il, ref closure, setup, parent);
21332134

0 commit comments

Comments
 (0)