Пример #1
0
        public static HLGotoInstruction Create(HLMethod pMethod, HLLabel pTargetLabel)
        {
            HLGotoInstruction instruction = new HLGotoInstruction(pMethod);

            instruction.mTargetLabel = pTargetLabel;
            return(instruction);
        }
Пример #2
0
 public static HLGotoInstruction Create(HLMethod pMethod, HLLabel pTargetLabel)
 {
     HLGotoInstruction instruction = new HLGotoInstruction(pMethod);
     instruction.mTargetLabel = pTargetLabel;
     return instruction;
 }