estools / estraverse

ECMAScript JS AST traversal functions
BSD 2-Clause "Simplified" License
941 stars 131 forks source link

Add support to named ExportAllDeclaration #119

Open gaborantal opened 3 years ago

gaborantal commented 3 years ago

In ES2020, support of named export has been added 1. Traversing an ExportAllDeclaration previously missed its 'exported' key which is an identifier.

In this patchset, the traverse of the 'exported' key is added.