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: _overviews/compiler-options/optimizer.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ However, even when staying within these constraints, some changes performed by t
55
55
- Inlined methods disappear from call stacks.
56
56
57
57
- This can lead to unexpected behaviors when using a debugger.
58
-
- Related: line numbers (stored in bytecode) are discarded when a method is inlined into a different classfile, which also impacts debugging experience. (This [could be improved](https://github.com/scala/scala-dev/issues/3) and is expected to [progress](https://github.com/lampepfl/dotty/pull/11492).)
58
+
- Related: line numbers (stored in bytecode) are discarded when a method is inlined into a different classfile, which also impacts debugging experience. (This [could be improved](https://github.com/scala/scala-dev/issues/3) and is expected to [progress](https://github.com/scala/scala3/pull/11492).)
59
59
60
60
- Inlining a method can delay class loading of the class where the method is defined.
Copy file name to clipboardExpand all lines: _overviews/contribute/bug-reporting-guide.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Bug Reporting Guide
3
3
num: 8
4
4
---
5
5
6
-
The Scala compiler and standard library bug tracker is located at [https://github.com/scala/bug](https://github.com/scala/bug), and for Scala 3, it is located at [github.com/lampepfl/dotty](https://github.com/lampepfl/dotty/issues). Before you submit a bug make sure that it is certainly a bug by following instructions
6
+
The Scala compiler and standard library bug tracker is located at [https://github.com/scala/bug](https://github.com/scala/bug), and for Scala 3, it is located at [github.com/scala/scala3](https://github.com/scala/scala3/issues). Before you submit a bug make sure that it is certainly a bug by following instructions
Copy file name to clipboardExpand all lines: _overviews/contribute/guide.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ unencumbered by copyrights or patents.
34
34
35
35
### Bug-fix Check List
36
36
> Originally these steps cover the [Scala 2 compiler](https://github.com/scala/scala), but they also are relevant to
37
-
> the [Scala 3 compiler](https://github.com/lampepfl/dotty).
37
+
> the [Scala 3 compiler](https://github.com/scala/scala3).
38
38
39
39
This is the impatient developer's checklist for the steps to submit a bug-fix pull request to the Scala project. For more information, description and justification for the steps, follow the links in that step. Further specific instructions for the release of Scala you are targeting can be found in the `CONTRIBUTING.md` file for that [GitHub branch](https://github.com/scala/scala)
Copy file name to clipboardExpand all lines: _overviews/contribute/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ scala_resources:
54
54
icon: fa fa-bug
55
55
link: /contribute/guide.html
56
56
- title: Code Reviews
57
-
description: "Review pull requests against scala/scala, lampepfl/dotty, scala/scala-lang, scala/docs.scala-lang, and others."
57
+
description: "Review pull requests against scala/scala, scala/scala3, scala/scala-lang, scala/docs.scala-lang, and others."
58
58
icon: fa fa-eye
59
59
link: /contribute/codereviews.html
60
60
- title: Core Libraries
@@ -109,7 +109,7 @@ In the spree, regular project maintainers will mentor you to create your first c
109
109
110
110
### So you want to improve the Scala 3 compiler...
111
111
112
-
The [Scala 3 compiler](https://github.com/lampepfl/dotty) is an open source project.
112
+
The [Scala 3 compiler](https://github.com/scala/scala3) is an open source project.
113
113
If you are curious about contributing but don't know how to begin, the [Scala Center](https://scala.epfl.ch)
114
114
runs the **Scala Compiler Academy** project to onboard and educate new people to the project. You can join the regular
115
115
**Issue Spree**, watch in-depth videos, and read the contributing guide:
@@ -119,7 +119,7 @@ runs the **Scala Compiler Academy** project to onboard and educate new people to
119
119
#### Which areas are perfect for newcomers?
120
120
- Adding new linting options, which help enforce cleaner code.
121
121
- Improving the clarity of error messages, so that the user understands better what went wrong.
122
-
- Add IDE quick-fix actions to error messages, e.g. PR [lampepfl/dotty#18314](https://github.com/lampepfl/dotty/pull/18314).
122
+
- Add IDE quick-fix actions to error messages, e.g. PR [scala/scala3#18314](https://github.com/scala/scala3/pull/18314).
123
123
124
124
### So you want to write a library...
125
125
@@ -162,7 +162,7 @@ When contributing, please follow:
162
162
163
163
### Community tickets
164
164
165
-
All issues can be found in the [Scala bug tracker](https://github.com/scala/bug), or the [Scala 3 issue tracker](https://github.com/lampepfl/dotty/issues). Most issues are labeled
165
+
All issues can be found in the [Scala bug tracker](https://github.com/scala/bug), or the [Scala 3 issue tracker](https://github.com/scala/scala3/issues). Most issues are labeled
166
166
to make it easier to find issues you are interested in.
Copy file name to clipboardExpand all lines: _overviews/scala3-migration/incompat-other-changes.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,7 +124,7 @@ class C extends B // In Scala 3, Error: class C needs to be abstract, since def
124
124
{% endtab %}
125
125
{% endtabs %}
126
126
127
-
This behavior was decided in [Dotty issue #4770](https://github.com/lampepfl/dotty/issues/4770).
127
+
This behavior was decided in [Dotty issue #4770](https://github.com/scala/scala3/issues/4770).
128
128
129
129
An easy fix is simply to remove the abstract def, since in practice it had no effect in Scala 2.
130
130
@@ -264,7 +264,7 @@ val pojo = new Pojo()
264
264
265
265
A type of the form `=> T` cannot be used as an argument to a type parameter anymore.
266
266
267
-
This decision is explained in [this comment](https://github.com/lampepfl/dotty/blob/0f1a23e008148f76fd0a1c2991b991e1dad600e8/compiler/src/dotty/tools/dotc/core/ConstraintHandling.scala#L144-L152) of the Scala 3 source code.
267
+
This decision is explained in [this comment](https://github.com/scala/scala3/blob/0f1a23e008148f76fd0a1c2991b991e1dad600e8/compiler/src/dotty/tools/dotc/core/ConstraintHandling.scala#L144-L152) of the Scala 3 source code.
268
268
269
269
For instance, it is not allowed to pass a function of type `Int => (=> Int) => Int` to the `uncurried` method since it would assign `=> Int` to the type parameter `T2`.
Copy file name to clipboardExpand all lines: _overviews/scala3-migration/incompat-type-checker.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Scala 3 being based on stronger theoretical foundations, these unsoundness bugs
14
14
## Unsoundness Fixes in Variance checks
15
15
16
16
In Scala 2, default parameters and inner-classes are not subject to variance checks.
17
-
It is unsound and might cause runtime failures, as demonstrated by this [test](https://github.com/lampepfl/dotty/blob/10526a7d0aa8910729b6036ee51942e05b71abf6/tests/neg/variances.scala) in the Scala 3 repository.
17
+
It is unsound and might cause runtime failures, as demonstrated by this [test](https://github.com/scala/scala3/blob/10526a7d0aa8910729b6036ee51942e05b71abf6/tests/neg/variances.scala) in the Scala 3 repository.
18
18
19
19
The Scala 3 compiler does not permit this anymore.
0 commit comments