Skip to content

Commit

Permalink
Move exported under lsp
Browse files Browse the repository at this point in the history
Summary: Functions used by the LSP, so bundle them together.

Reviewed By: bobyangyf

Differential Revision: D47195362

fbshipit-source-id: 09f0ad911c185ba8937cc74667dc5650fd9a9706
  • Loading branch information
ndmitchell authored and facebook-github-bot committed Jul 4, 2023
1 parent 0228e89 commit 2b4ac54
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion starlark/src/analysis/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ use crate::analysis::types::LintT;
use crate::syntax::AstModule;

mod dubious;
pub(crate) mod exported;
mod find_call_name;
mod flow;
mod incompatible;
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions starlark/src/lsp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
mod bind;
mod definition;
mod exported;
pub mod server;
mod symbols;
#[cfg(all(test, not(windows)))]
Expand Down
2 changes: 1 addition & 1 deletion starlark/src/lsp/symbols.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
use starlark_map::small_map::SmallMap;

use crate::analysis::exported::SymbolKind;
use crate::codemap::CodeMap;
use crate::codemap::LineCol;
use crate::lsp::exported::SymbolKind;
use crate::syntax::ast::AstAssignIdent;
use crate::syntax::ast::AstStmt;
use crate::syntax::ast::StmtP;
Expand Down

0 comments on commit 2b4ac54

Please sign in to comment.