1 instantiation of NullLiteral
System.Workflow.Activities (1)
Rules\Literal.cs (1)
138
return new
NullLiteral
(literalType);
27 references to NullLiteral
System.Workflow.Activities (27)
Rules\ArithmeticLiteral.cs (2)
319
(lhs == typeof(
NullLiteral
)) ? Messages.NullValue : RuleDecompiler.DecompileType(lhs),
320
(rhs == typeof(
NullLiteral
)) ? Messages.NullValue : RuleDecompiler.DecompileType(rhs));
Rules\Expressions.cs (10)
126
Type resultType = (primitiveExpr.Value != null) ? primitiveExpr.Value.GetType() : typeof(
NullLiteral
);
328
(lhsType == typeof(
NullLiteral
)) ? Messages.NullValue : RuleDecompiler.DecompileType(lhsType));
337
(rhsType == typeof(
NullLiteral
)) ? Messages.NullValue : RuleDecompiler.DecompileType(rhsType));
927
if (targetType == typeof(
NullLiteral
))
1082
if (targetType == typeof(
NullLiteral
))
1315
if (targetType == typeof(
NullLiteral
))
1789
if (parameterType != typeof(
NullLiteral
))
2037
if (fromType == typeof(
NullLiteral
))
2305
if (targetType == typeof(
NullLiteral
))
2682
if (targetType == typeof(
NullLiteral
))
Rules\Literal.cs (12)
458
(lhs == typeof(
NullLiteral
)) ? Messages.NullValue : RuleDecompiler.DecompileType(lhs),
459
(rhs == typeof(
NullLiteral
)) ? Messages.NullValue : RuleDecompiler.DecompileType(rhs));
620
else if (lhsNullable && (rhs == typeof(
NullLiteral
)))
682
if (rhsNullable && (lhs == typeof(
NullLiteral
)))
704
if (lhsNullable || rhsNullable || (lhs == typeof(
NullLiteral
)) || (rhs == typeof(
NullLiteral
)))
741
if ((lhs == typeof(
NullLiteral
)) || (rhs == typeof(
NullLiteral
)) ||
750
if ((candidates.Count == 0) && ((lhsNullable || rhsNullable || (lhs == typeof(
NullLiteral
)) || (rhs == typeof(
NullLiteral
)))))
776
(lhs == typeof(
NullLiteral
)) ? Messages.NullValue : RuleDecompiler.DecompileType(lhs),
777
(rhs == typeof(
NullLiteral
)) ? Messages.NullValue : RuleDecompiler.DecompileType(rhs));
Rules\Parser\Parser.cs (1)
2645
if (numArgs == fixedParameterCount + 1 && validation.ExpressionInfo(arguments[p]).ExpressionType == typeof(
NullLiteral
))
Rules\RuleValidation.cs (1)
1903
if (rhsType == typeof(
NullLiteral
))
Rules\Statements.cs (1)
149
if (assignmentType == typeof(
NullLiteral
))