summaryrefslogtreecommitdiff
path: root/test/pending/run
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2013-12-10 11:15:53 +0100
committerEugene Burmako <xeno.by@gmail.com>2013-12-10 15:38:09 +0100
commitf417380637428d8a57c38d2305c9cf09fd7d6366 (patch)
tree9b037a831b12fe3fc71bdee9e5ec9ee0b85cf6f1 /test/pending/run
parent75cc6cf256df9e152eaec771121ce0db9f7039f8 (diff)
downloadscala-f417380637428d8a57c38d2305c9cf09fd7d6366.tar.gz
scala-f417380637428d8a57c38d2305c9cf09fd7d6366.tar.bz2
scala-f417380637428d8a57c38d2305c9cf09fd7d6366.zip
typeCheck => typecheck
This method has always been slightly bothering me, so I was really glad when Denys asked me to rename it. Let’s see how it pans out.
Diffstat (limited to 'test/pending/run')
-rw-r--r--test/pending/run/idempotency-partial-functions.scala2
-rw-r--r--test/pending/run/t5943b1.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/pending/run/idempotency-partial-functions.scala b/test/pending/run/idempotency-partial-functions.scala
index bc0ca706dd..e673da5a29 100644
--- a/test/pending/run/idempotency-partial-functions.scala
+++ b/test/pending/run/idempotency-partial-functions.scala
@@ -20,7 +20,7 @@ object Test extends App {
case e: ToolBoxError => println(e)
}
val tb = cm.mkToolBox()
- val tpartials = tb.typeCheck(partials.tree)
+ val tpartials = tb.typecheck(partials.tree)
println(tpartials)
val rtpartials = tb.resetAllAttrs(tpartials)
println(tb.eval(rtpartials))
diff --git a/test/pending/run/t5943b1.scala b/test/pending/run/t5943b1.scala
index 0d54718753..79c638fedc 100644
--- a/test/pending/run/t5943b1.scala
+++ b/test/pending/run/t5943b1.scala
@@ -6,5 +6,5 @@ import scala.tools.reflect.ToolBox
object Test extends App {
val tb = cm.mkToolBox()
val expr = tb.parse("math.sqrt(4.0)")
- println(tb.typeCheck(expr))
+ println(tb.typecheck(expr))
} \ No newline at end of file