mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
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:
committed by
GitHub
parent
e305fd89a9
commit
71cb1db3cd
@@ -79,7 +79,7 @@ const v1: Visitor = {
|
||||
if (path.isReferencedIdentifier()) {
|
||||
// ...
|
||||
}
|
||||
if (t.isQualifiedTypeIdentifier(path.node, path.parent)) {
|
||||
if (t.isQualifiedTypeIdentifier(path.node)) {
|
||||
// ...
|
||||
}
|
||||
},
|
||||
|
||||
@@ -79,7 +79,7 @@ const v1: Visitor = {
|
||||
if (path.isReferencedIdentifier()) {
|
||||
// ...
|
||||
}
|
||||
if (t.isQualifiedTypeIdentifier(path.node, path.parent)) {
|
||||
if (t.isQualifiedTypeIdentifier(path.node)) {
|
||||
// ...
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user