@@ -240,11 +240,11 @@ class Definitions {
240
240
@ tu lazy val CompiletimeTesting_ErrorKind : Symbol = requiredModule(" scala.compiletime.testing.ErrorKind" )
241
241
@ tu lazy val CompiletimeTesting_ErrorKind_Parser : Symbol = CompiletimeTesting_ErrorKind .requiredMethod(" Parser" )
242
242
@ tu lazy val CompiletimeTesting_ErrorKind_Typer : Symbol = CompiletimeTesting_ErrorKind .requiredMethod(" Typer" )
243
- @ tu lazy val CompiletimeOpsPackageObject : Symbol = requiredModule (" scala.compiletime.ops.package " )
244
- @ tu lazy val CompiletimeOpsPackageObjectAny : Symbol = requiredModule(" scala.compiletime.ops.package .any" )
245
- @ tu lazy val CompiletimeOpsPackageObjectInt : Symbol = requiredModule(" scala.compiletime.ops.package .int" )
246
- @ tu lazy val CompiletimeOpsPackageObjectString : Symbol = requiredModule(" scala.compiletime.ops.package .string" )
247
- @ tu lazy val CompiletimeOpsPackageObjectBoolean : Symbol = requiredModule(" scala.compiletime.ops.package .boolean" )
243
+ @ tu lazy val CompiletimeOpsPackage : Symbol = requiredPackage (" scala.compiletime.ops" )
244
+ @ tu lazy val CompiletimeOpsAny : Symbol = requiredModule(" scala.compiletime.ops.any" )
245
+ @ tu lazy val CompiletimeOpsInt : Symbol = requiredModule(" scala.compiletime.ops.int" )
246
+ @ tu lazy val CompiletimeOpsString : Symbol = requiredModule(" scala.compiletime.ops.string" )
247
+ @ tu lazy val CompiletimeOpsBoolean : Symbol = requiredModule(" scala.compiletime.ops.boolean" )
248
248
249
249
/** Note: We cannot have same named methods defined in Object and Any (and AnyVal, for that matter)
250
250
* because after erasure the Any and AnyVal references get remapped to the Object methods
@@ -1088,10 +1088,10 @@ class Definitions {
1088
1088
compiletimePackageOpTypes.contains(sym.name)
1089
1089
&& (
1090
1090
sym.owner == CompiletimePackageObject .moduleClass && sym.name == tpnme.S
1091
- || sym.owner == CompiletimeOpsPackageObjectAny .moduleClass && compiletimePackageAnyTypes.contains(sym.name)
1092
- || sym.owner == CompiletimeOpsPackageObjectInt .moduleClass && compiletimePackageIntTypes.contains(sym.name)
1093
- || sym.owner == CompiletimeOpsPackageObjectBoolean .moduleClass && compiletimePackageBooleanTypes.contains(sym.name)
1094
- || sym.owner == CompiletimeOpsPackageObjectString .moduleClass && compiletimePackageStringTypes.contains(sym.name)
1091
+ || sym.owner == CompiletimeOpsAny .moduleClass && compiletimePackageAnyTypes.contains(sym.name)
1092
+ || sym.owner == CompiletimeOpsInt .moduleClass && compiletimePackageIntTypes.contains(sym.name)
1093
+ || sym.owner == CompiletimeOpsBoolean .moduleClass && compiletimePackageBooleanTypes.contains(sym.name)
1094
+ || sym.owner == CompiletimeOpsString .moduleClass && compiletimePackageStringTypes.contains(sym.name)
1095
1095
)
1096
1096
1097
1097
// ----- Scala-2 library patches --------------------------------------
0 commit comments