diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-05-06 14:48:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 14:48:48 +0200 |
commit | e18aaf49cfc1dfa8aaa361e343556d1d9eb7251a (patch) | |
tree | 3a6f408fb84e54dce7b51fa95a00dac2d9fcab49 /cli/doc/module.rs | |
parent | e513751ee9a9f9d737a0513b5bb0fac06274ede0 (diff) |
feat: deno doc handles default exports (#4873)
Diffstat (limited to 'cli/doc/module.rs')
-rw-r--r-- | cli/doc/module.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/doc/module.rs b/cli/doc/module.rs index 2de9c7ca8..ab137904b 100644 --- a/cli/doc/module.rs +++ b/cli/doc/module.rs @@ -16,6 +16,7 @@ pub fn get_doc_node_for_export_decl( let js_doc = doc_parser.js_doc_for_span(export_span); let location = doc_parser.ast_parser.get_span_location(export_span).into(); + eprintln!("decl {:#?}", export_decl); match &export_decl.decl { Decl::Class(class_decl) => { let (name, class_def) = |