We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c09151c + 88d0efc commit 8406380Copy full SHA for 8406380
docs/dev/guide.md
@@ -88,9 +88,8 @@ is lower than Cargo's model of packages: each Cargo package consists of several
88
targets, each of which is a separate crate (or several crates, if you try
89
different feature combinations).
90
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.
+Procedural macros are inputs as well, roughly modeled as a crate with a bunch of
+additional black box `dyn Fn(TokenStream) -> TokenStream` functions.
94
95
Soon we'll talk how we build an LSP server on top of `Analysis`, but first,
96
let's deal with that paths issue.
0 commit comments