public SearchExpressionParserArgs(StringView text, SearchContext context = null, SearchExpressionParserFlags options = SearchExpressionParserFlags.Default)
 {
     this.text    = text.Trim();
     this.context = context;
     this.options = options;
 }