summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2009-09-10 15:39:11 +0000
committerMartin Odersky <odersky@gmail.com>2009-09-10 15:39:11 +0000
commite72f0c7f2ff54f2afff3b612e7e9f9572ce3c82f (patch)
treed6f07e52e994609c8fc81624a987cc92a66b49b4 /build.xml
parent5f5b82e792094d3d51985167f96742f4ea210a31 (diff)
downloadscala-e72f0c7f2ff54f2afff3b612e7e9f9572ce3c82f.tar.gz
scala-e72f0c7f2ff54f2afff3b612e7e9f9572ce3c82f.tar.bz2
scala-e72f0c7f2ff54f2afff3b612e7e9f9572ce3c82f.zip
Massive redesign so that: scala> "hi" == "hi".r...
Massive redesign so that: scala> "hi" == "hi".reverse.reverse gives: res0: Boolean = true Preparing to do similar things to arrays.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index bd7c4c9ab9..f63bb0059c 100644
--- a/build.xml
+++ b/build.xml
@@ -258,6 +258,7 @@ LOCAL REFERENCE BUILD (LOCKER)
srcdir="${src.dir}/library"
jvmargs="${scalacfork.jvmargs}">
<include name="scala/Predef.scala"/>
+ <include name="scala/LowPriorityImplicits.scala"/>
<compilationpath>
<pathelement location="${build-locker.dir}/classes/library"/>
</compilationpath>
@@ -271,6 +272,7 @@ LOCAL REFERENCE BUILD (LOCKER)
jvmargs="${scalacfork.jvmargs}">
<include name="**/*.scala"/>
<exclude name="scala/Predef.scala"/>
+ <exclude name="scala/LowPriorityImplicits.scala"/>
<compilationpath>
<pathelement location="${build-locker.dir}/classes/library"/>
</compilationpath>
@@ -439,6 +441,7 @@ QUICK BUILD (QUICK)
srcdir="${src.dir}/library"
jvmargs="${scalacfork.jvmargs}">
<include name="scala/Predef.scala"/>
+ <include name="scala/LowPriorityImplicits.scala"/>
<compilationpath>
<pathelement location="${build-quick.dir}/classes/library"/>
</compilationpath>
@@ -452,6 +455,7 @@ QUICK BUILD (QUICK)
jvmargs="${scalacfork.jvmargs}">
<include name="**/*.scala"/>
<exclude name="scala/Predef.scala"/>
+ <exclude name="scala/LowPriorityImplicits.scala"/>
<compilationpath>
<pathelement location="${build-quick.dir}/classes/library"/>
</compilationpath>
@@ -896,6 +900,7 @@ BOOTSTRAPPING BUILD (STRAP)
target="jvm-1.5"
addparams="${scalac.args.all}">
<include name="scala/Predef.scala"/>
+ <include name="scala/LowPriorityImplicits.scala"/>
</scalac>
<scalac
srcdir="${src.dir}/library"
@@ -905,6 +910,7 @@ BOOTSTRAPPING BUILD (STRAP)
addparams="${scalac.args.all}">
<include name="**/*.scala"/>
<exclude name="scala/Predef.scala"/>
+ <exclude name="scala/LowPriorityImplicits.scala"/>
</scalac>
<scalac
srcdir="${src.dir}/actors"