11 references to Target
System.Core (11)
Microsoft\Scripting\Ast\DebugViewWriter.cs (1)
980Out(GetLabelTargetName(node.Target), Flow.Space);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
170public LabelTarget Target { get { return _node.Target; } }
Microsoft\Scripting\Ast\ExpressionStringBuilder.cs (1)
718DumpLabel(node.Target);
Microsoft\Scripting\Ast\ExpressionVisitor.cs (1)
321return node.Update(VisitLabelTarget(node.Target), Visit(node.Value));
Microsoft\Scripting\Ast\GotoExpression.cs (2)
120/// <param name="target">The <see cref="Target" /> property of the result.</param> 124if (target == Target && value == Value) {
Microsoft\Scripting\Compiler\LambdaCompiler.ControlFlow.cs (2)
101var labelInfo = ReferenceLabel(node.Target); 114if (node.Target.Type == typeof(void)) {
Microsoft\Scripting\Compiler\LambdaCompiler.Statements.cs (2)
62if (g != null && (g.Value == null || !Significant(g.Value)) && ReferenceLabel(g.Target).CanReturn) { 414LabelInfo jumpInfo = ReferenceLabel(jump.Target);
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
772expr = Expression.MakeGoto(node.Kind, node.Target, value.Node, node.Type);