We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Index
1 parent 7f9ea95 commit e31cd00Copy full SHA for e31cd00
crates/ark/src/lsp/inputs/package_index.rs
@@ -7,6 +7,12 @@
7
8
use std::path::Path;
9
10
+/// This represents an INDEX file.
11
+///
12
+/// We use it to complement the list of exported symbols in NAMESPACE, in
13
+/// particular for exported datasets. This is a stopgap approach that has known
14
+/// shortcomings (false negatives as we will treat actually non-exported symbols
15
+/// as exported in some cases).
16
#[derive(Default, Clone, Debug)]
17
pub struct Index {
18
pub names: Vec<String>,
0 commit comments