Skip to content

Commit 32681be

Browse files
committed
Implement named argument completion
1 parent 054e56e commit 32681be

4 files changed

Lines changed: 2156 additions & 0 deletions

File tree

src/completion/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
/// - **resolver**: Resolving the subject to a concrete class type
66
/// - **builder**: Building LSP `CompletionItem`s from resolved class info
77
/// - **phpdoc**: PHPDoc tag completion inside `/** … */` blocks
8+
/// - **named_args**: Named argument completion inside function/method call parens
89
pub mod builder;
10+
pub mod named_args;
911
pub mod phpdoc;
1012
pub mod resolver;
1113
pub mod target;

0 commit comments

Comments
 (0)