Base:
property
Type
System.Linq.Expressions.Expression.Type
1 override of Type
System.Core (1)
Microsoft\Scripting\Ast\ConditionalExpression.cs (1)
140
public sealed override Type
Type
{
6 references to Type
System.Core (6)
Microsoft\Scripting\Ast\ConditionalExpression.cs (2)
67
/// <returns>The <see cref="
Type
"/> that represents the static type of the expression.</returns>
115
return Expression.Condition(test, ifTrue, ifFalse,
Type
);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
94
public Type Type { get { return _node.
Type
; } }
Microsoft\Scripting\Compiler\LambdaCompiler.Logical.cs (2)
41
EmitExpressionAsType(node.IfTrue, node.
Type
, flags);
53
EmitExpressionAsType(node.IfFalse, node.
Type
, flags);
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
330
expr = Expression.Condition(test.Node, ifTrue.Node, ifFalse.Node, node.
Type
);