Exemplo n.º 1
0
        public static LLGotoInstruction Create(LLFunction pFunction, LLLabel pTargetLabel)
        {
            LLGotoInstruction instruction = new LLGotoInstruction(pFunction);

            instruction.mTargetLabel = pTargetLabel;
            return(instruction);
        }
Exemplo n.º 2
0
 public static LLGotoInstruction Create(LLFunction pFunction, LLLabel pTargetLabel)
 {
     LLGotoInstruction instruction = new LLGotoInstruction(pFunction);
     instruction.mTargetLabel = pTargetLabel;
     return instruction;
 }