File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
compiler/src/dotty/tools/dotc/core Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -521,7 +521,7 @@ object StdNames {
521
521
val setSymbol : N = " setSymbol"
522
522
val setType : N = " setType"
523
523
val setTypeSignature : N = " setTypeSignature"
524
- val splice : N = " splice"
524
+ val splice : N = " $ splice"
525
525
val staticClass : N = " staticClass"
526
526
val staticModule : N = " staticModule"
527
527
val staticPackage : N = " staticPackage"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import scala.runtime.quoted.Unpickler.Pickled
4
4
5
5
sealed abstract class Expr [+ T ] {
6
6
7
- final def splice : T = throw new Error (" splice should have been compiled away" )
7
+ final def `$ splice` : T = throw new Error (" splice should have been compiled away" )
8
8
9
9
/** Evaluate the contents of this expression and return the result.
10
10
*
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import scala.reflect.ClassTag
5
5
import scala .runtime .quoted .Unpickler .Pickled
6
6
7
7
sealed abstract class Type [T ] {
8
- type splice = T
8
+ type `$ splice` = T
9
9
}
10
10
11
11
/** Some basic type tags, currently incomplete */
You can’t perform that action at this time.
0 commit comments