예제 #1
0
        public static LLGotoInstruction Create(LLFunction pFunction, LLLabel pTargetLabel)
        {
            LLGotoInstruction instruction = new LLGotoInstruction(pFunction);

            instruction.mTargetLabel = pTargetLabel;
            return(instruction);
        }
예제 #2
0
 public static LLGotoInstruction Create(LLFunction pFunction, LLLabel pTargetLabel)
 {
     LLGotoInstruction instruction = new LLGotoInstruction(pFunction);
     instruction.mTargetLabel = pTargetLabel;
     return instruction;
 }