Skip to content

Commit a9b808b

Browse files
committed
Revert "Try with nonexperimental compiler"
This reverts commit 5d6c42c.
1 parent 5d6c42c commit a9b808b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

community-build/src/scala/dotty/communitybuild/projects.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ lazy val compilerVersion: String =
1111
new String(Files.readAllBytes(file), UTF_8)
1212

1313
lazy val compilerSupportExperimental: Boolean =
14-
false &&
1514
compilerVersion.contains("SNAPSHOT") || compilerVersion.contains("NIGHTLY")
1615

1716
lazy val sbtPluginFilePath: String =

compiler/src/dotty/tools/dotc/config/Properties.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,7 @@ trait PropertiesTrait {
8888
* 2. Features supported by experimental versions of the compiler:
8989
* - research plugins
9090
*/
91-
val experimental: Boolean =
92-
false &&
93-
versionString.contains("SNAPSHOT") || versionString.contains("NIGHTLY")
91+
val experimental: Boolean = versionString.contains("SNAPSHOT") || versionString.contains("NIGHTLY")
9492

9593
val copyrightString: String = scalaPropOrElse("copyright.string", "(c) 2002-2017 LAMP/EPFL")
9694

0 commit comments

Comments
 (0)