summaryrefslogtreecommitdiff
path: root/src/library/scala/Boolean.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-01-24 06:18:01 +0000
committerPaul Phillips <paulp@improving.org>2011-01-24 06:18:01 +0000
commit4253124eecba6bed38f1dc961c5c4ee39a29f730 (patch)
tree797f007d753da349feb718f802c476557c47249e /src/library/scala/Boolean.scala
parent1cbe06c2dcde9606c3d3f6fe86e89fbba3a404e3 (diff)
downloadscala-4253124eecba6bed38f1dc961c5c4ee39a29f730.tar.gz
scala-4253124eecba6bed38f1dc961c5c4ee39a29f730.tar.bz2
scala-4253124eecba6bed38f1dc961c5c4ee39a29f730.zip
The AnyVal types become source files instead of...
The AnyVal types become source files instead of polite compiler fictions. !! You'll need a serious "ant all.clean" now. !! As of this commit the system is fully bootstrapped and the synthetic code eliminated: only the source files remain. The sort-of-AnyVal-companions in scala.runtime.* have all been eliminated because the actual companions can do everything; deprecated vals in the scala.runtime package object point to the companions. This left AnyValCompanion as the only AnyVal related thing in the runtime package: that made little sense, so I deprecated and moved it as well. Starr is based on r24066 plus this commit. Closes #4121. Review by rytz, odersky.
Diffstat (limited to 'src/library/scala/Boolean.scala')
-rwxr-xr-xsrc/library/scala/Boolean.scala34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/library/scala/Boolean.scala b/src/library/scala/Boolean.scala
new file mode 100755
index 0000000000..d5e9eb950e
--- /dev/null
+++ b/src/library/scala/Boolean.scala
@@ -0,0 +1,34 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2002-2011, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+// generated on Sun Jan 23 21:13:38 PST 2011
+
+package scala
+
+import java.{ lang => jl }
+
+final class Boolean extends AnyVal {
+ def unary_! : Boolean = sys.error("stub")
+
+ def ==(x: Boolean): Boolean = sys.error("stub")
+ def !=(x: Boolean): Boolean = sys.error("stub")
+ def ||(x: Boolean): Boolean = sys.error("stub")
+ def &&(x: Boolean): Boolean = sys.error("stub")
+ // Compiler won't build with these seemingly more accurate signatures
+ // def ||(x: => Boolean): Boolean = sys.error("stub")
+ // def &&(x: => Boolean): Boolean = sys.error("stub")
+ def |(x: Boolean): Boolean = sys.error("stub")
+ def &(x: Boolean): Boolean = sys.error("stub")
+ def ^(x: Boolean): Boolean = sys.error("stub")
+}
+
+object Boolean extends AnyValCompanion {
+ override def toString = "object scala.Boolean"
+ def box(x: Boolean): jl.Boolean = jl.Boolean.valueOf(x)
+ def unbox(x: jl.Object): Boolean = x.asInstanceOf[jl.Boolean].booleanValue()
+} \ No newline at end of file