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)); }
public virtual LessNode VisitPageAtRule(LessParser.PageAtRuleContext context) { throw new System.NotImplementedException(); }