public virtual LessNode VisitUnicodeRange(LessParser.UnicodeRangeContext context)
 {
     throw new System.NotImplementedException();
 }
        public override LessNode VisitUnicodeRange(LessParser.UnicodeRangeContext context)
        {
            var values = context.UnicodeValue().Select(v => v.GetText()).ToArray();

            return(new UnicodeRange(values[0], values.Length > 1 ? values[1] : null));
        }