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; }
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); }