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: "test_parse(\"$((0))\")?"
---
ParseTestResults(
  input: "$((0))",
  result: [
    WordPieceWithSource(
      piece: ArithmeticExpression(UnexpandedArithmeticExpr(
        value: "0",
      )),
      start_index: 0,
      end_index: 6,
    ),
  ],
)