Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
Co-Authored-By: Jordan Harband <ljharb@gmail.com>
  • Loading branch information
christophercurrie and ljharb committed May 13, 2019
1 parent f66e064 commit 7aa13d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ExportMap.js
Expand Up @@ -527,7 +527,8 @@ ExportMap.parse = function (path, content, context) {
if (exportedDecl.type === 'VariableDeclaration') {
exportedDecl.declarations.forEach((decl) =>
recursivePatternCapture(decl.id,(id) => m.namespace.set(
id.name, captureDoc(source, docStyleParsers, decl, exportedDecl, moduleBlockNode))
id.name,
captureDoc(source, docStyleParsers, decl, exportedDecl, moduleBlockNode))
)
)
} else {
Expand Down

0 comments on commit 7aa13d1

Please sign in to comment.