Ejemplo n.º 1
0
 internal Inclusive_Or_ExpressionInfo Parse()
 {
     var rslt = new Inclusive_Or_ExpressionInfo(this);
     foreach (var or in this.Exclusive_or_expressions)
     {
         rslt.Exclusive_Or_Expressions.Add(or.Parse());
     }
     return rslt;
 }
Ejemplo n.º 2
0
        internal Inclusive_Or_ExpressionInfo Parse()
        {
            var rslt = new Inclusive_Or_ExpressionInfo(this);

            foreach (var or in this.Exclusive_or_expressions)
            {
                rslt.Exclusive_Or_Expressions.Add(or.Parse());
            }
            return(rslt);
        }