Skip to content

Commit 058bf31

Browse files
committed
updates macro annotation docs
1 parent 6871c53 commit 058bf31

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

overviews/macros/annotations.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,15 @@ languages: [ja]
1313

1414
**Eugene Burmako**
1515

16-
Macro annotations are only available in Scala 2.10 with the macro paradise plugin.
17-
Their inclusion in Scala 2.11 is not planned, but it will possibly happen in Scala 2.12.
16+
Macro annotations are only available in Scala 2.10.x and 2.11.x with the macro paradise plugin.
17+
Their inclusion in official Scala might happen in Scala 2.12, but there is no certainty about it yet.
1818
Follow the instructions at the ["Macro Paradise"](/overviews/macros/paradise.html) page to download and use our compiler plugin.
1919

2020
Note that macro paradise is needed both to compile and to expand macro annotations,
2121
which means that your users will have to also add macro paradise to their builds in order to use your macro annotations.
2222
However, after macro annotations expand, the resulting code will no longer have any references to macro paradise
2323
and won't require its presence at compile-time or at runtime.
2424

25-
## Call for feedback
26-
27-
This implementation of macro annotations is experimental (hence the snapshot suffix in the current `2.0.0-SNAPSHOT` version
28-
of macro-paradise) and exists to provide a preview and initiate a discussion that will culminate in submitting
29-
a Scala improvement proposal for Scala 2.11 or 2.12. Please check whether it handles your code generation needs,
30-
so that I can refine it appropriately. If something doesn't work, let me know <a href="https://twitter.com/#!/xeno_by">on Twitter</a>.
31-
3225
## Walkthrough
3326

3427
Macro annotations bring textual abstraction to the level of definitions. Annotating any top-level or nested definition with something

0 commit comments

Comments
 (0)