コード例 #1
0
        public override LessNode VisitPageAtRule(LessParser.PageAtRuleContext context)
        {
            var selector = (Selector)context.selector()?.Accept(this);
            var block    = (RuleBlock)context.block().Accept(this);

            return(new PageAtRule(selector, block));
        }
コード例 #2
0
 public virtual LessNode VisitPageAtRule(LessParser.PageAtRuleContext context)
 {
     throw new System.NotImplementedException();
 }