php-lsp 0.11.0

A PHP Language Server Protocol implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Text mechanics: UTF-16/byte offset conversions, word extraction, fuzzy
//! matching, and zero-width range constructors. Pure string/position math with
//! no PHP-language knowledge (that lives in [`crate::lang`]).

mod fuzzy;
mod offset;
mod range;
mod word;

pub(crate) use fuzzy::*;
pub(crate) use offset::*;
pub(crate) use range::*;
pub(crate) use word::*;