Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add flag –show_documentSymbols for lsp symbol lookup #864

Merged
merged 6 commits into from
Aug 2, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/bin/lpython.cpp
Co-authored-by: Ondřej Čertík <ondrej@certik.us>
  • Loading branch information
ankitaS11 and certik authored Aug 2, 2022
commit bfc4758bb96bee66d7d97a9ddd11ece719f87a2a
2 changes: 1 addition & 1 deletion src/bin/lpython.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ int main(int argc, char *argv[])
app.add_flag("--print-targets", print_targets, "Print the registered targets");
app.add_flag("--get-rtlib-header-dir", print_rtlib_header_dir, "Print the path to the runtime library header file");

app.add_flag("--show-documentSymbols", show_documentSymbols, "Show symbols in lpython file");
app.add_flag("--show-document-symbols", show_document_symbols, "Show symbols in lpython file");
if( compiler_options.fast ) {
lpython_pass_manager.use_optimization_passes();
}
Expand Down