コード例 #1
0
 public virtual LessNode VisitAttribValue(LessParser.AttribValueContext context)
 {
     throw new System.NotImplementedException();
 }
コード例 #2
0
 public override LessNode VisitAttribValue(LessParser.AttribValueContext context)
 {
     return(context.identifier()?.Accept(this)
            ?? context.@string()?.Accept(this)
            ?? context.measurement().Accept(this));
 }