brush-parser 0.3.0

POSIX/bash shell tokenizer and parsers (used by brush-shell)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
source: brush-parser/src/word.rs
expression: "super::parse_brace_expansions(input,\n&options)?.ok_or_else(||\nanyhow::anyhow!(\"Expected brace expansion to be parsed successfully\"))?"
---
[
  Text("x"),
  Expr([
    Child([
      Text("a"),
    ]),
    Child([
      Text("b"),
    ]),
  ]),
  Text("y"),
]