Skip to content

Commit 5f18650

Browse files
authored
Merge pull request #2970 from johnduffell/patch-1
Clearer points in favour of macro mixing
2 parents d626b36 + a59ef92 commit 5f18650

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

_overviews/scala3-migration/compatibility-metaprogramming.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ You can learn all the new metaprogramming concepts by reading the [Macros in Sca
6363
## Cross-building a Macro Library
6464

6565
You have written a wonderful macro library and you would like it to be available in Scala 2.13 and Scala 3.
66-
There are two different approaches, the traditional cross-building technique and the more experimental mixing macro technique.
66+
There are two different approaches, the traditional cross-building technique and the more flexible macro mixing technique.
67+
68+
The benefit of macro mixing is that consumers who take advantage of the `-Ytasty-reader` option can still use your macros.
69+
6770
You can learn about them by reading these tutorials:
6871
- [Cross-Building a Macro Library](tutorial-macro-cross-building.html)
6972
- [Mixing Scala 2.13 and Scala 3 Macros](tutorial-macro-mixing.html)

_overviews/scala3-migration/tutorial-macro-mixing.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ previous-page: tutorial-macro-mixing
77
next-page: tooling-syntax-rewriting
88
---
99

10-
This tutorial shows how to mix Scala 2.13 and Scala 3 macros in a single artifact.
10+
This tutorial shows how to mix Scala 2.13 and Scala 3 macros in a single artifact. This means that consumers can use '-Ytasty-reader' from Scala 2.13 code that uses your macros.
1111

12-
It can be used to create a new Scala 3 macro library and make it available for Scala 2.13 users.
13-
It can also be used to port an existing Scala 2.13 macro library to Scala 3, although it is probably easier to cross-build.
12+
There are two main benefits of this:
13+
14+
1. Making a new or existing scala 3 macro library available for Scala 2.13 users without having to provide a separate 2.13 version
15+
2. Allowing your macros to be usable in multi-project builds that are being upgraded module by module.
1416

1517
## Introduction
1618

0 commit comments

Comments
 (0)