4 instantiations of ThrowInstruction
System.Linq.Expressions (4)
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (4)
707
internal static readonly ThrowInstruction Throw = new
ThrowInstruction
(true, false);
708
internal static readonly ThrowInstruction VoidThrow = new
ThrowInstruction
(false, false);
709
internal static readonly ThrowInstruction Rethrow = new
ThrowInstruction
(true, true);
710
internal static readonly ThrowInstruction VoidRethrow = new
ThrowInstruction
(false, true);
8 references to ThrowInstruction
System.Linq.Expressions (8)
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (4)
707
internal static readonly
ThrowInstruction
Throw = new ThrowInstruction(true, false);
708
internal static readonly
ThrowInstruction
VoidThrow = new ThrowInstruction(false, false);
709
internal static readonly
ThrowInstruction
Rethrow = new ThrowInstruction(true, true);
710
internal static readonly
ThrowInstruction
VoidRethrow = new ThrowInstruction(false, true);
System\Linq\Expressions\Interpreter\InstructionList.cs (4)
1012
Emit(
ThrowInstruction
.Throw);
1017
Emit(
ThrowInstruction
.VoidThrow);
1022
Emit(
ThrowInstruction
.Rethrow);
1027
Emit(
ThrowInstruction
.VoidRethrow);