lsp-max 26.7.3

Law-state LSP runtime: max LSP 3.18 coverage, process-mining conformance, receipt-chain admission
Documentation
//! Module containing LanguageServer default method helper implementations.

pub mod call_hierarchy;
pub mod diagnostics_and_ledger;
pub mod goto_definition;
pub mod hover;
pub mod intent;
pub mod lsif_and_state;
pub mod references;
pub mod repair;
pub mod snapshot;
pub mod text_document;
pub mod type_hierarchy;

pub mod diag_ext;
pub mod file_ops_ext;
pub mod fmt_ext;
pub mod hints_ext;
pub mod notebook_ext;
pub mod semantic_ext;
pub mod symbols_ext;
pub mod sync;

pub use call_hierarchy::{incoming_calls, outgoing_calls, prepare_call_hierarchy};
pub use diag_ext::{progress, set_trace, work_done_progress_cancel};
pub use diagnostics_and_ledger::{
    max_admission, max_autonomic_loop, max_chain, max_clear_diagnostic, max_hook, max_hook_graph,
    max_lawful_transition, max_ledger_report, max_manifold_snapshot, max_propagate, max_receipt,
    max_refusal, max_release_actuation, max_replay, max_verify_ledger,
};
pub use file_ops_ext::{
    did_create_files, did_delete_files, did_rename_files, will_create_files, will_delete_files,
    will_rename_files,
};
pub use fmt_ext::{formatting, on_type_formatting, range_formatting};
pub use goto_definition::goto_definition;
pub use hover::hover;
pub use intent::*;
pub use lsif_and_state::{
    execute_sparql, max_dump_state, max_instance_list, max_lsif, max_reset, max_restore_state,
};
pub use references::references;
pub use repair::{
    max_apply_repair_transaction, max_explain_diagnostic, max_repair_plan, max_run_gate,
};
pub use semantic_ext::semantic_tokens_full_delta;
pub use snapshot::{
    max_conformance_delta, max_conformance_vector, max_export_analysis_bundle, max_rule_pack_diff,
    max_rule_pack_status, max_rule_packs, max_snapshot, max_workspace_conformance,
};
pub use sync::*;
pub use text_document::*;
pub use type_hierarchy::{prepare_type_hierarchy, subtypes, supertypes};