8000 Squash: fix Scalastyle · scala-js/scala-js@d1c4295 · GitHub
[go: up one dir, main page]

Skip to content

Commit d1c4295

Browse files
authored
Squash: fix Scalastyle
1 parent 862ae3e commit d1c4295

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

compiler/src/main/scala/org/scalajs/nscplugin/GenJSCode.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7420,12 +7420,12 @@ private object GenJSCode {
74207420

74217421
val byClass: Map[ClassName, Map[MethodName, JavalibOpBody]] = Map(
74227422
jswkn.BoxedIntegerClass.withSuffix("$") -> Map(
7423-
m("divideUnsigned", List(I, I), I) -> ArgBinaryOp(binop.Int_unsigned_/),
7424-
m("remainderUnsigned", List(I, I), I) -> ArgBinaryOp(binop.Int_unsigned_%),
7423+
m("divideUnsigned", List(I, I), I) -> ArgBinaryOp(binop.Int_unsigned_/),
7424+
m("remainderUnsigned", List(I, I), I) -> ArgBinaryOp(binop.Int_unsigned_%)
74257425
),
74267426
jswkn.BoxedLongClass.withSuffix("$") -> Map(
7427-
m("divideUnsigned", List(J, J), J) -> ArgBinaryOp(binop.Long_unsigned_/),
7428-
m("remainderUnsigned", List(J, J), J) -> ArgBinaryOp(binop.Long_unsigned_%),
7427+
m("divideUnsigned", List(J, J), J) -> ArgBinaryOp(binop.Long_unsigned_/),
7428+
m("remainderUnsigned", List(J, J), J) -> ArgBinaryOp(binop.Long_unsigned_%)
74297429
),
74307430
jswkn.BoxedStringClass -> Map(
74317431
m("length", Nil, I) -> ThisUnaryOp(unop.String_length),

0 commit comments

Comments
 (0)
0