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