/// <summary> /// Appends the specified op to the list of ASM ops. /// </summary> /// <remarks> /// This should be used in preference to ASMOps.Add as it allows injection / manipulation /// on an op-by-op basis, as they are added. /// </remarks> /// <param name="anOp">The op to append.</param> public void Append(ASMOp anOp) { ASMOps.Add(anOp); }