perl_parser/incremental/incremental_handler_v2.rs
1//! Incremental LSP didChange handler (deprecated).
2//!
3//! **DEPRECATED**: The LSP server implementation has moved to the `perl-lsp` crate.
4//! This module is kept as a stub for compatibility and no longer provides
5//! incremental didChange handling in `perl-parser`.
6//!
7//! # Migration
8//!
9//! ```ignore
10//! // Old:
11//! use perl_parser::incremental_handler_v2;
12//!
13//! // New:
14//! use perl_lsp::server;
15//! ```