public void AddJumpLabel(BinaryLabel label)
        {
            if (mJumpLabelSection == null)
            {
                mJumpLabelSection = new List <BinaryLabel>();
            }

            mJumpLabelSection.Add(label);
        }
        public void AddProcedureLabel(BinaryLabel label)
        {
            if (mProcedureLabelSection == null)
            {
                mProcedureLabelSection = new List <BinaryLabel>();
            }

            mProcedureLabelSection.Add(label);
        }