Пример #1
0
 /// <summary>
 /// Removes a particular instruction from this control-flow graph.
 /// Returns a new control-flow graph that does not contain the
 /// instruction.
 /// </summary>
 /// <param name="instructionTag">The tag of the instruction to remove.</param>
 /// <returns>
 /// A control-flow graph that no longer contains the instruction.
 /// </returns>
 public void RemoveInstruction(ValueTag instructionTag)
 {
     ImmutableGraph = ImmutableGraph.RemoveInstruction(instructionTag);
 }