File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ object DottyPredef {
16
16
def assertFail (): Nothing = throw new java.lang.AssertionError (" assertion failed" )
17
17
def assertFail (message : => Any ): Nothing = throw new java.lang.AssertionError (" assertion failed: " + message)
18
18
19
- inline final def implicitly [T ](implicit ev : T ): T = ev
19
+ // inline final def implicitly[T](implicit ev: T): T = ev
20
20
21
21
/** Used to mark code blocks as being expressions, instead of being taken as part of anonymous classes and the like.
22
22
* This is just a different name for [[identity ]].
@@ -47,7 +47,7 @@ object DottyPredef {
47
47
* }}}
48
48
* @group utilities
49
49
*/
50
- inline def locally [T ](inline body : T ): T = body
50
+ // inline def locally[T](inline body: T): T = body
51
51
52
52
/**
53
53
* Retrieve the single value of a type with a unique inhabitant.
@@ -62,9 +62,9 @@ object DottyPredef {
62
62
* }}}
63
63
* @group utilities
64
64
*/
65
- inline def valueOf [T ]: T = summonFrom {
66
- case ev : ValueOf [T ] => ev.value
67
- }
65
+ // inline def valueOf[T]: T = summonFrom {
66
+ // case ev: ValueOf[T] => ev.value
67
+ // }
68
68
69
69
/** Summon a given value of type `T`. Usually, the argument is not passed explicitly.
70
70
*
You can’t perform that action at this time.
0 commit comments