-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
2 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
tests/sjs-junit/test/org/scalajs/testsuite/jsinterop/NonNativeJSTypeTestScala3.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
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))) | ||
} | ||
} | ||
|
||
object NonNativeJSTypeTestScala3 { | ||
final class VC(val x: Int) extends AnyVal | ||
|
||
final class GenVC[T](val x: T) extends AnyVal | ||
} |