public static LLSwitchCase Create(LLLiteral pLiteral, LLLabel pLabel)
 {
     LLSwitchCase switchCase = new LLSwitchCase();
     switchCase.mLiteral = pLiteral;
     switchCase.mLabel = pLabel;
     return switchCase;
 }
Exemple #2
0
        public static LLSwitchCase Create(LLLiteral pLiteral, LLLabel pLabel)
        {
            LLSwitchCase switchCase = new LLSwitchCase();

            switchCase.mLiteral = pLiteral;
            switchCase.mLabel   = pLabel;
            return(switchCase);
        }