From 6039e8ce3faa1aa4bb2f7fde123d926950687545 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Mon, 6 Jan 2025 11:50:37 -0500 Subject: [PATCH] missing right paren in TSExpressionWithTypeArguments change note Also listed the new node types in the details summary, aligning with other changelogs. --- docs/v8-migration-api.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/v8-migration-api.md b/docs/v8-migration-api.md index ecf37df9e1..4c6eeb5c29 100644 --- a/docs/v8-migration-api.md +++ b/docs/v8-migration-api.md @@ -548,12 +548,12 @@ Most of the changes to our TypeScript-specific AST nodes are to reduce the diffe } ``` -- Split `TSExpressionWithTypeArguments` into `TSClassImplements` and `TSInterfaceHeritage` ([#16731](https://github.com/babel/babel/pull/16731). +- Split `TSExpressionWithTypeArguments` into `TSClassImplements` and `TSInterfaceHeritage` ([#16731](https://github.com/babel/babel/pull/16731)). The new nodes also use `typeArguments` instead of `typeParameters` ([#17017](https://github.com/babel/babel/pull/17017)).
- ClassDeclaration + TSClassImplements ```ts class C implements X {} @@ -596,7 +596,7 @@ Most of the changes to our TypeScript-specific AST nodes are to reduce the diffe
- TSInterfaceDeclaration + TSInterfaceHeritage ```ts interface I extends X {}