public static LLBranchInstruction Create(LLFunction pFunction, LLLocation pConditionSource, LLLabel pTrueTargetLabel, LLLabel pFalseTargetLabel)
 {
     LLBranchInstruction instruction = new LLBranchInstruction(pFunction);
     instruction.mConditionSource = pConditionSource;
     instruction.mTrueTargetLabel = pTrueTargetLabel;
     instruction.mFalseTargetLabel = pFalseTargetLabel;
     return instruction;
 }
示例#2
0
        public static LLBranchInstruction Create(LLFunction pFunction, LLLocation pConditionSource, LLLabel pTrueTargetLabel, LLLabel pFalseTargetLabel)
        {
            LLBranchInstruction instruction = new LLBranchInstruction(pFunction);

            instruction.mConditionSource  = pConditionSource;
            instruction.mTrueTargetLabel  = pTrueTargetLabel;
            instruction.mFalseTargetLabel = pFalseTargetLabel;
            return(instruction);
        }