Releases: mck89/peast
Releases · mck89/peast
1.13.11
1.13.10
1.13.9
1.13.8
1.13.7
- Implemented parsing of top level await
- Implemented parsing of
#field in obj
syntax - Implemented parsing of class static block
- Aligned invalid octal numbers checks to the specification
- BC break: identifier tokens' value now report their raw name, this means that unicode escape sequences are reported as they are written in the code, without converting them to their corresponding characters. Identifier nodes have a new property called
rawName
that contains their raw name, including unconverted unicode escape sequences, while thename
property still contains the converted value as before. Renderer now printsrawName
for identifiers to prevent automatic conversion of escaped keywords.