File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
compiler/src/dotty/tools/dotc/config Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ lazy val compilerVersion: String =
1111 new String (Files .readAllBytes(file), UTF_8 )
1212
1313lazy val compilerSupportExperimental : Boolean =
14- false &&
1514 compilerVersion.contains(" SNAPSHOT" ) || compilerVersion.contains(" NIGHTLY" )
1615
1716lazy val sbtPluginFilePath : String =
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments