16 references to MakeGoto
System.Core (16)
Microsoft\Scripting\Ast\GotoExpression.cs (15)
127return Expression.MakeGoto(Kind, target, value, Type); 141return MakeGoto(GotoExpressionKind.Break, target, null, typeof(void)); 155return MakeGoto(GotoExpressionKind.Break, target, value, typeof(void)); 169return MakeGoto(GotoExpressionKind.Break, target, null, type); 186return MakeGoto(GotoExpressionKind.Break, target, value, type); 199return MakeGoto(GotoExpressionKind.Continue, target, null, typeof(void)); 214return MakeGoto(GotoExpressionKind.Continue, target, null, type); 227return MakeGoto(GotoExpressionKind.Return, target, null, typeof(void)); 242return MakeGoto(GotoExpressionKind.Return, target, null, type); 256return MakeGoto(GotoExpressionKind.Return, target, value, typeof(void)); 273return MakeGoto(GotoExpressionKind.Return, target, value, type); 286return MakeGoto(GotoExpressionKind.Goto, target, null, typeof(void)); 301return MakeGoto(GotoExpressionKind.Goto, target, null, type); 315return MakeGoto(GotoExpressionKind.Goto, target, value, typeof(void)); 332return MakeGoto(GotoExpressionKind.Goto, target, value, type);
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
772expr = Expression.MakeGoto(node.Kind, node.Target, value.Node, node.Type);