/// <summary>
 ///     Returns zero if stack has zero value, otherwise got to <paramref name="next" />.
 /// </summary>
 public static ILEmitter EmitReturnIfFalsy(this ILEmitter il, Label next) =>
 il.Brtrue(next)
 .Ret(0);