php-lsp 0.11.0

A PHP Language Server Protocol implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Type resolution and symbol lookup: variable→class inference (`type_map`),
//! cursor→mir type queries (`type_query`), the name-matching declaration walker
//! (`resolve`), the per-file name→declarations table (`symbol_map`), and
//! built-in class member lookup from the bundled stubs (`stub_members`).

pub mod array_inference;
pub mod resolve;
pub mod symbol_map;
pub mod type_map;
pub mod type_query;

pub(crate) mod stub_members;