Skip to content
Merged
Changes from all commits
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
5 changes: 3 additions & 2 deletions src/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ pub struct ObjectSource {
/// Map of property name → optional deprecation message for properties
/// annotated with `@Deprecated`. Consulted on field access so the
/// warning fires when a deprecated property is *used*, not when the
/// containing module is loaded.
pub deprecated: IndexMap<String, Option<String>>,
/// containing module is loaded. Crate-private: only the evaluator
/// reads/writes this; not part of the public API.
pub(crate) deprecated: IndexMap<String, Option<String>>,
}

/// A pkl runtime value.
Expand Down
Loading