Skip to content

Commit

Permalink
Fix #18658: Handle varargs of generic types in JSExportsGen.
Browse files Browse the repository at this point in the history
When extracting the type of a varargs parameter, we have to go back
to before erasure. However, that gives us a non-erased type inside
as well. We need to re-erase that type to get something sensible
for the back-end.
  • Loading branch information
sjrd committed Oct 12, 2023
1 parent 7dc9798 commit 4538875
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ object JSSymUtils {
val list =
for ((name, info) <- paramNamesAndTypes) yield {
val v =
if (info.isRepeatedParam) Some(info.repeatedToSingle.widenDealias)
if (info.isRepeatedParam) Some(TypeErasure.erasure(info.repeatedToSingle))
else None
name -> v
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
package org.scalajs.testsuite.jsinterop

import org.junit.Assert.*
import org.junit.Test

import scala.scalajs.js
import scala.scalajs.js.annotation.*

class NonNativeJSTypeTestScala3 {
import NonNativeJSTypeTestScala3.*

@Test
def overloadWithVarargOfGenericType(): Unit = {
class OverloadWithVarargOfGenericType extends js.Object {
def overloaded(x: Int): Int = x
def overloaded(xs: (Int, Int)*): Int = xs.size
}

val obj = new OverloadWithVarargOfGenericType
assertEquals(5, obj.overloaded(5))
assertEquals(1, obj.overloaded((5, 6)))
assertEquals(2, obj.overloaded((1, 2), (3, 4)))
}

@Test
def overloadWithVarargOfValueClass(): Unit = {
class OverloadWithVarargOfValueClass extends js.Object {
def overloaded(x: Int): Int = x
def overloaded(xs: VC*): Int = xs.size
}

val obj = new OverloadWithVarargOfValueClass
assertEquals(5, obj.overloaded(5))
assertEquals(1, obj.overloaded(new VC(5)))
assertEquals(2, obj.overloaded(new VC(5), new VC(6)))
}

@Test
def overloadWithVarargOfGenericValueClass(): Unit = {
class OverloadWithVarargOfGenericValueClass extends js.Object {
def overloaded(x: Int): Int = x
def overloaded(xs: GenVC[Int]*): Int = xs.size
}

val obj = new OverloadWithVarargOfGenericValueClass
assertEquals(5, obj.overloaded(5))
assertEquals(1, obj.overloaded(new GenVC(5)))
assertEquals(2, obj.overloaded(new GenVC(5), new GenVC(6)))
}

@Test
def overloadWithVarargOfOpaqueTypeAlias(): Unit = {
import OpaqueContainer.*

class OverloadWithVarargOfOpaqueTypeAlias extends js.Object {
def overloaded(x: String): Int = x.toInt
def overloaded(xs: OpaqueInt*): Int = xs.size
}

val obj = new OverloadWithVarargOfOpaqueTypeAlias
assertEquals(5, obj.overloaded("5"))
assertEquals(1, obj.overloaded(fromInt(5)))
assertEquals(2, obj.overloaded(fromInt(5), fromInt(6)))
}
}

object NonNativeJSTypeTestScala3 {
final class VC(val x: Int) extends AnyVal

final class GenVC[T](val x: T) extends AnyVal

object OpaqueContainer {
opaque type OpaqueInt = Int

def fromInt(x: Int): OpaqueInt = x
def toInt(x: OpaqueInt): Int = x
}
}

0 comments on commit 4538875

Please sign in to comment.