You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* update to latest test suite
* create experimental flags
* port parsing logic
* Update src/Acornima/ExperimentalESFeatures.cs
* add configuration to allow top-level using
* fix line break test
* fix scope
* use localized messages
* Adjust IsLet
* Simplify IsUsingKeyword usage by removing redundant calls
* Update TryGetInternedString
* Update documentation of VariableDeclarator.Id
* Fix source gen tests
* Correct async function and await using lookaheads
* Disallow explicit resource management for ES versions not supporting async/await
* Improve AST to JSON conversion + remove the each property of for-of statements
* Port tests from acornjs
* Adjust implementation to match the error reporting behavior of V8
* Add tests for some edge cases + AllowTopLevelUsing
* Improve documentation of AllowTopLevelUsing
---------
Co-authored-by: adams85 <[email protected]>
Co-authored-by: Adam Simon <[email protected]>
/// When property of an object literal: <see cref="Expression"/> (incl. <see cref="SpreadElement"/> and <see cref="FunctionExpression"/> for getters/setters/methods)<br />
24
+
/// When property of an object literal: <see cref="Expression"/> (incl. <see cref="SpreadElement"/> and <see cref="FunctionExpression"/> for getters/setters/methods)<br />
25
25
/// When property of an object pattern: <see cref="Identifier"/> | <see cref="MemberExpression"/> (in assignment contexts only) | <see cref="ArrayPattern"/> | <see cref="ObjectPattern"/> | <see cref="AssignmentPattern"/> | <see cref="RestElement"/>
/// Explicit resource management feature as specified by this <seealso href="https://github.com/tc39/proposal-explicit-resource-management">proposal</seealso>. Available only when <see cref="ParserOptions.EcmaVersion"/> >= ES2017.
0 commit comments