コード例 #1
0
 public virtual LessNode VisitQuotedExpression(LessParser.QuotedExpressionContext context)
 {
     throw new System.NotImplementedException();
 }
コード例 #2
0
 public override LessNode VisitQuotedExpression(LessParser.QuotedExpressionContext context)
 {
     return(new QuotedExpression((LessString)context.@string().Accept(this)));
 }