Skip to content

Commit

Permalink
Update TreeInstruction.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
LPeter1997 committed Oct 12, 2023
1 parent 13db761 commit 6fadb0a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ internal sealed class TreeInstruction : InstructionBase, IOperand, IValueInstruc

public TreeInstruction(IValueInstruction underlying, ImmutableArray<IOperand> operands)
{
if (underlying is TreeInstruction) throw new ArgumentOutOfRangeException(nameof(underlying));

this.Underlying = underlying;
this.Operands = operands;
}
Expand Down

0 comments on commit 6fadb0a

Please sign in to comment.