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.
1 parent 5d74537 commit c7450a6Copy full SHA for c7450a6
crates/oxc_data_structures/src/lib.rs
@@ -1 +1,3 @@
1
+//! Data structures used across other oxc crates.
2
+#![warn(missing_docs)]
3
pub mod stack;
crates/oxc_data_structures/src/stack/mod.rs
@@ -1,3 +1,8 @@
+//! Contains the following FILO data structures:
+//! - [`Stack`]: A growable stack
+//! - [`SparseStack`]: A stack that can have empty entries
4
+//! - [`NonEmptyStack`]: A growable stack that can never be empty, allowing for more efficient
5
+//! operations
6
mod capacity;
7
mod common;
8
mod non_empty;
crates/oxc_span/src/lib.rs
@@ -1,7 +1,6 @@
//! Source positions and related helper functions.
//!
//! <https://doc.rust-lang.org/beta/nightly-rustc/rustc_span>
-#![warn(missing_docs)]
mod atom;
mod compact_str;
0 commit comments