1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// ===============================================================================
// QUANTALANG LANGUAGE SERVER PROTOCOL
// ===============================================================================
// Copyright (c) 2022-2026 Zain Dana Harper. MIT License.
// ===============================================================================
//! Language Server Protocol implementation for QuantaLang.
//!
//! This module provides full LSP support including:
//! - Text document synchronization
//! - Code completion
//! - Hover information
//! - Go to definition
//! - Find references
//! - Document symbols
//! - Diagnostics
//! - Code actions
//! - Formatting
//!
//! ## Architecture
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────────────┐
//! │ LSP Server │
//! │ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
//! │ │ Message │ │ Document │ │ Symbol │ │
//! │ │ Transport │ │ Store │ │ Index │ │
//! │ └──────┬──────┘ └──────┬──────┘ └──────┬──────┘ │
//! │ │ │ │ │
//! │ ▼ ▼ ▼ │
//! │ ┌─────────────────────────────────────────────────────────┐ │
//! │ │ Request Handler │ │
//! │ │ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ │ │
//! │ │ │Completion│ │ Hover │ │ GoToDef │ │ Diagnose │ │ │
//! │ │ └──────────┘ └──────────┘ └──────────┘ └──────────┘ │ │
//! │ └─────────────────────────────────────────────────────────┘ │
//! └─────────────────────────────────────────────────────────────────┘
//! ```
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;