You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: experimental-backend.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ This gives you the chance to preview pieces of Scala 2.12 just by enabling some
12
12
`-Ybackend:GenBCode` enables the new backend.
13
13
14
14
GenBCode without any further compiler flags is a drop-in replacement for the current backend ("GenASM").
15
-
The generated bytecode is binary compatible, altough not exactly the same; some instruction sequences may differ.
15
+
The generated bytecode is binary compatible, although not exactly the same; some instruction sequences may differ.
16
16
If you find a binary incompatibility, please [report an issue](https://issues.scala-lang.org/secure/Dashboard.jspa).
17
17
18
18
## Delambdafy-Method
@@ -22,7 +22,7 @@ If you find a binary incompatibility, please [report an issue](https://issues.sc
22
22
Traditionally, the anonymous class generated for a lambda contains the lambda body in the `apply` method of the class.
23
23
When using delambdafy-method, a method containing the lambda body is generated for each lambda, and the anonymous class delegates to this method.
24
24
25
-
Delambdafy-method is a requiement for emitting lambdas in Java 8 style, as explained in detail in [this Gist by @retronym](https://gist.github.com/retronym/0178c212e4bacffed568).
25
+
Delambdafy-method is a requirement for emitting lambdas in Java 8 style, as explained in detail in [this Gist by @retronym](https://gist.github.com/retronym/0178c212e4bacffed568).
26
26
27
27
## Target jvm-1.8
28
28
@@ -46,7 +46,7 @@ The Scala 2.11.7 compiler emits lambdas in Java 8 style (using `invokedynamic` a
46
46
-`-target:jvm-1.8` is enabled
47
47
- the scala-java8-compat library is on the compiler's classpath
48
48
49
-
In an SBT project, this can be achieved using the following settins:
49
+
In an SBT project, this can be achieved using the following settings:
0 commit comments