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
---
source: brush-parser/src/word.rs
expression: "test_parse(\"$(echo hi)\")?"
---
ParseTestResults(
  input: "$(echo hi)",
  result: [
    WordPieceWithSource(
      piece: CommandSubstitution("echo hi"),
      start_index: 0,
      end_index: 10,
    ),
  ],
)