Ju
Ju
**Describe the bug** The provided `tests/toml-v1.0.peg` can't capture some cases. 1. `\uxxxx` / `\UXXXXXXXX` out of range. "Any Unicode character may be escaped with the \uXXXX or \UXXXXXXXX forms. The...
As a user, I want an enhanced post-processing API for the parsed AST, so that I can customize the parsed result to support more use cases, such as creating table...
**Issue** ``` >>> from hcl2 import loads >>> loads('a=1*(2+3)') {'a': ['${1 * 2 + 3}']} ``` **Expect** ``` {'a': ['${1*(2+3)}']} ```
The proposal here is to parse and analyse the structure of regex expression to SimpleRegex expression. It was enlightened an email sent by Adalbert Arsen. I endorse this plan because...