Parsing: Enhance the parser to correctly handle the await x ** y syntax, ensuring it fails to parse as intended by the JavaScript specification. This change improves the accuracy of the parser and prevents ambiguity in code interpretation.
Fixes
Fix the parsing issue where await x ** y was incorrectly parsed, aligning the behavior with the JavaScript specification.
Fix a bug that prevented the use of await inside class fields initialized with async arrow functions, ensuring proper async behavior in class contexts.