diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-03-25 11:13:37 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-25 11:13:37 +1100 |
commit | 5ebb4017030c065c31d52be50dc7fa7a4c128d64 (patch) | |
tree | 2983a0deeb164cc64ab45feb0f892e969b386115 /cli/ast.rs | |
parent | d6d5ced1ab90404d25a87a242ee5b03ca655abe5 (diff) |
feat(lsp): add import completions (#9821)
Diffstat (limited to 'cli/ast.rs')
-rw-r--r-- | cli/ast.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/ast.rs b/cli/ast.rs index e22b242d7..3979af0ce 100644 --- a/cli/ast.rs +++ b/cli/ast.rs @@ -276,8 +276,8 @@ fn strip_config_from_emit_options( pub struct ParsedModule { comments: SingleThreadedComments, leading_comments: Vec<Comment>, - module: Module, - source_map: Rc<SourceMap>, + pub module: Module, + pub source_map: Rc<SourceMap>, source_file: Rc<SourceFile>, } |