summaryrefslogtreecommitdiff
path: root/test/pending/pos/unapplyComplex.scala
diff options
context:
space:
mode:
authorBurak Emir <emir@epfl.ch>2006-10-30 05:47:25 +0000
committerBurak Emir <emir@epfl.ch>2006-10-30 05:47:25 +0000
commitf28285cee74e3f5da3bee5bdd18969566b75f736 (patch)
treeec413577d8afb67ae2ab8f4588761a6a58190a82 /test/pending/pos/unapplyComplex.scala
parent948b1a53ea1820733a8fb8bf668510c5f4be3ec3 (diff)
downloadscala-f28285cee74e3f5da3bee5bdd18969566b75f736.tar.gz
scala-f28285cee74e3f5da3bee5bdd18969566b75f736.tar.bz2
scala-f28285cee74e3f5da3bee5bdd18969566b75f736.zip
* (unapply) fixed accessor handling for product...
* (unapply) fixed accessor handling for products in SyntheticMethods * added test cases
Diffstat (limited to 'test/pending/pos/unapplyComplex.scala')
-rw-r--r--test/pending/pos/unapplyComplex.scala37
1 files changed, 37 insertions, 0 deletions
diff --git a/test/pending/pos/unapplyComplex.scala b/test/pending/pos/unapplyComplex.scala
new file mode 100644
index 0000000000..4c91ca18b0
--- /dev/null
+++ b/test/pending/pos/unapplyComplex.scala
@@ -0,0 +1,37 @@
+trait Complex extends Product2[double,double]
+
+class ComplexRect(val _1:double, _2:double) extends Complex {
+ override def toString = "ComplexRect("+_1+","+_2+")"
+}
+
+class ComplexPolar(val _1:double, _2:double) extends Complex {
+ override def toString = "ComplexPolar("+_1+","+_2+")"
+}
+
+object ComplexRect {
+ def unapply(z:Complex): Option[Complex] = {
+ if(z.isInstanceOf[ComplexRect]) Some(z) else z match {
+ case ComplexPolar(mod, arg) =>
+ Some(new ComplexRect(mod*Math.cos(arg), mod*Math.sin(arg)))
+} } }
+
+object ComplexPolar {
+ def unapply(z:Complex): Option[Complex] = {
+ if(z.isInstanceOf[ComplexPolar]) Some(z) else z match {
+ case ComplexRect(re,im) =>
+ Some(new ComplexPolar(Math.sqrt(re*re + im*im), Math.atan(re/im)))
+} } }
+
+object Test {
+ def main(args:Array[String]) = {
+ new ComplexRect(1,1) match {
+ case ComplexPolar(mod,arg) => // z @ ???
+ Console.println("mod"+mod+"arg"+arg)
+ }
+ val Komplex = ComplexRect
+ new ComplexPolar(Math.sqrt(2),Math.PI / 4.0) match {
+ case Komplex(re,im) => // z @ ???
+ Console.println("re"+re+" im"+im)
+ }
+ }
+}