perl-incremental-parsing 0.12.2

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