Update @babel/traverse: new version of @babel/types (#65645)

The tests need to update because isQualifiedTypeIdentifier no longer
requires a parent node.
This commit is contained in:
Nathan Shively-Sanders
2023-05-30 11:36:28 -07:00
committed by GitHub
parent e305fd89a9
commit 71cb1db3cd
2 changed files with 2 additions and 2 deletions

View File

@@ -79,7 +79,7 @@ const v1: Visitor = {
if (path.isReferencedIdentifier()) {
// ...
}
if (t.isQualifiedTypeIdentifier(path.node, path.parent)) {
if (t.isQualifiedTypeIdentifier(path.node)) {
// ...
}
},

View File

@@ -79,7 +79,7 @@ const v1: Visitor = {
if (path.isReferencedIdentifier()) {
// ...
}
if (t.isQualifiedTypeIdentifier(path.node, path.parent)) {
if (t.isQualifiedTypeIdentifier(path.node)) {
// ...
}
},