10 references to DefaultValue
System.Core (10)
Microsoft\Scripting\Ast\DebugViewWriter.cs (1)
971Visit(node.DefaultValue);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
215public Expression DefaultValue { get { return _node.DefaultValue; } }
Microsoft\Scripting\Ast\ExpressionVisitor.cs (1)
357return node.Update(VisitLabelTarget(node.Target), Visit(node.DefaultValue));
Microsoft\Scripting\Ast\LabelExpression.cs (3)
27/// <see cref="GotoExpression"/>. Otherwise, it gets the value in <see cref="LabelExpression.DefaultValue"/>. If the 86/// <param name="defaultValue">The <see cref="DefaultValue" /> property of the result.</param> 89if (target == Target && defaultValue == DefaultValue) {
Microsoft\Scripting\Compiler\LambdaCompiler.ControlFlow.cs (3)
87if (node.DefaultValue != null) { 89EmitExpressionAsVoid(node.DefaultValue, flags); 92EmitExpression(node.DefaultValue, flags);
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
723Result expression = RewriteExpression(node.DefaultValue, stack);