File tree 2 files changed +4
-1
lines changed
compiler/src/dotty/tools/dotc/config
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ lazy val compilerVersion: String =
11
11
new String (Files .readAllBytes(file), UTF_8 )
12
12
13
13
lazy val compilerSupportExperimental : Boolean =
14
+ true ||
14
15
compilerVersion.contains(" SNAPSHOT" ) || compilerVersion.contains(" NIGHTLY" )
15
16
16
17
lazy val sbtPluginFilePath : String =
Original file line number Diff line number Diff line change @@ -88,7 +88,9 @@ trait PropertiesTrait {
88
88
* 2. Features supported by experimental versions of the compiler:
89
89
* - research plugins
90
90
*/
91
- val experimental : Boolean = versionString.contains(" SNAPSHOT" ) || versionString.contains(" NIGHTLY" )
91
+ val experimental : Boolean =
92
+ true ||
93
+ versionString.contains(" SNAPSHOT" ) || versionString.contains(" NIGHTLY" )
92
94
93
95
val copyrightString : String = scalaPropOrElse(" copyright.string" , " (c) 2002-2017 LAMP/EPFL" )
94
96
You can’t perform that action at this time.
0 commit comments