revset: restore parsing rule for expression without "modifier:" syntax 69c36fe1 parent e0a3ceb3

The new parse_program() will allow us to parse top-level string patterns with no parentheses. This patch also replaces a few callers of the old parse_program(). When we drop support for the all: modifier syntax, parse_program_with_modifier() will be replaced entirely.

authored by Yuya Nishihara

1
root = true
2
3
[*]
4
end_of_line = lf
5
insert_final_newline = true
6
trim_trailing_whitespace = true
7
8
[*.rs]
9
indent_style = space
10
indent_size = 4
11
# Turned off because some editors otherwise remove trailing spaces within
12
# multi-line string literals (intellij-rust/intellij-rust#5368).
13
trim_trailing_whitespace = false
14