예제 #1
0
 public virtual LessNode VisitConditionList(LessParser.ConditionListContext context)
 {
     throw new System.NotImplementedException();
 }
        public override LessNode VisitConditionList(LessParser.ConditionListContext context)
        {
            var conditions = context.condition().Select(c => (Condition)c.Accept(this));

            return(new AndConditionList(conditions));
        }