1 instantiation of NullLiteral
System.Workflow.Activities (1)
Rules\Literal.cs (1)
138return 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)
126Type 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)); 927if (targetType == typeof(NullLiteral)) 1082if (targetType == typeof(NullLiteral)) 1315if (targetType == typeof(NullLiteral)) 1789if (parameterType != typeof(NullLiteral)) 2037if (fromType == typeof(NullLiteral)) 2305if (targetType == typeof(NullLiteral)) 2682if (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)); 620else if (lhsNullable && (rhs == typeof(NullLiteral))) 682if (rhsNullable && (lhs == typeof(NullLiteral))) 704if (lhsNullable || rhsNullable || (lhs == typeof(NullLiteral)) || (rhs == typeof(NullLiteral))) 741if ((lhs == typeof(NullLiteral)) || (rhs == typeof(NullLiteral)) || 750if ((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)
2645if (numArgs == fixedParameterCount + 1 && validation.ExpressionInfo(arguments[p]).ExpressionType == typeof(NullLiteral))
Rules\RuleValidation.cs (1)
1903if (rhsType == typeof(NullLiteral))
Rules\Statements.cs (1)
149if (assignmentType == typeof(NullLiteral))