Skip to content

Commit 88d0efc

Browse files
authored
Update guide.md to reflect support for proc-macros
1 parent c09151c commit 88d0efc

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/dev/guide.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,8 @@ is lower than Cargo's model of packages: each Cargo package consists of several
8888
targets, each of which is a separate crate (or several crates, if you try
8989
different feature combinations).
9090

91-
Procedural macros should become inputs as well, but currently they are not
92-
supported. Procedural macro will be a black box `Box<dyn Fn(TokenStream) -> TokenStream>`
93-
function, and will be inserted into the crate graph just like dependencies.
91+
Procedural macros are inputs as well, roughly modeled as a crate with a bunch of
92+
additional black box `dyn Fn(TokenStream) -> TokenStream` functions.
9493

9594
Soon we'll talk how we build an LSP server on top of `Analysis`, but first,
9695
let's deal with that paths issue.

0 commit comments

Comments
 (0)