-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #354 from insdami/rename-cfg-explicit-return-type
Renamed configuration explicitReturnTypes to explicitResultTypes
- Loading branch information
Showing
11 changed files
with
24 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ReturnTypes/ExplicitResultTypesBase.scala → ...ResultTypes/ExplicitResultTypesBase.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...es/ExplicitResultTypesPathDependent.scala → ...es/ExplicitResultTypesPathDependent.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...eturnTypes/ExplicitResultTypesShort.scala → ...esultTypes/ExplicitResultTypesShort.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...nTypes/ExplicitResultTypesSingleton.scala → ...tTypes/ExplicitResultTypesSingleton.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...es/ExplicitResultTypesPathDependent.scala → ...es/ExplicitResultTypesPathDependent.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
package test.explicitReturnTypes | ||
package test.explicitResultTypes | ||
|
||
object ExplicitResultTypesPathDependent { | ||
class Path { | ||
class B { class C } | ||
implicit val x: _root_.test.explicitReturnTypes.ExplicitResultTypesPathDependent.Path#B = new B | ||
implicit val x: _root_.test.explicitResultTypes.ExplicitResultTypesPathDependent.Path#B = new B | ||
implicit val y: x.C = new x.C | ||
def gimme(yy: x.C) = ???; gimme(y) | ||
} | ||
implicit val b: _root_.test.explicitReturnTypes.ExplicitResultTypesPathDependent.Path#B = new Path().x | ||
implicit val b: _root_.test.explicitResultTypes.ExplicitResultTypesPathDependent.Path#B = new Path().x | ||
} |
2 changes: 1 addition & 1 deletion
2
...eturnTypes/ExplicitResultTypesShort.scala → ...esultTypes/ExplicitResultTypesShort.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package test.explicitReturnTypes | ||
package test.explicitResultTypes | ||
|
||
import scala.language.implicitConversions | ||
|
||
|
6 changes: 3 additions & 3 deletions
6
...nTypes/ExplicitResultTypesSingleton.scala → ...tTypes/ExplicitResultTypesSingleton.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters