using System; using System.Collections.Generic; using System.Text; namespace IFPSLib.Emit { /// /// Type of a set flag operation for the "setflag" instruction at the bytecode level. /// public enum SetFlagOpCode : byte { /// /// Sets the jump flag if the variable is not zero. /// NotZero, /// /// Sets the jump flag if the variable is zero. /// Zero } }