summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/quasiquotes/LiftableProps.scala
diff options
context:
space:
mode:
authorDenys Shabalin <denys.shabalin@typesafe.com>2014-02-19 17:20:35 +0100
committerDenys Shabalin <denys.shabalin@typesafe.com>2014-02-20 13:17:12 +0100
commitd49c09e3f67d780d2757085e02b0a28d333527c4 (patch)
treec4263bd1a011e8d2c955efb550d91446b6c7bffc /test/files/scalacheck/quasiquotes/LiftableProps.scala
parent3973f29cec9f06724941b68577908f546341c45e (diff)
downloadscala-d49c09e3f67d780d2757085e02b0a28d333527c4.tar.gz
scala-d49c09e3f67d780d2757085e02b0a28d333527c4.tar.bz2
scala-d49c09e3f67d780d2757085e02b0a28d333527c4.zip
Fix quasiquote terminology to be consistent with Scheme
1. Rename cardinality into rank. Shorter word, easier to understand, more appropriate in our context. 2. Previously we called any dollar substitution splicing but this is not consistent with Scheme where splicing is substitution with non-zero rank. So now $foo is unquoting and ..$foo and ...$foo is unquote splicing or just splicing. Correspondingly splicee becomes unquotee. 3. Rename si7980 test into t7980
Diffstat (limited to 'test/files/scalacheck/quasiquotes/LiftableProps.scala')
-rw-r--r--test/files/scalacheck/quasiquotes/LiftableProps.scala20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/files/scalacheck/quasiquotes/LiftableProps.scala b/test/files/scalacheck/quasiquotes/LiftableProps.scala
index 20cfcbe139..5d0eeb53c6 100644
--- a/test/files/scalacheck/quasiquotes/LiftableProps.scala
+++ b/test/files/scalacheck/quasiquotes/LiftableProps.scala
@@ -2,62 +2,62 @@ import org.scalacheck._, Prop._, Gen._, Arbitrary._
import scala.reflect.runtime.universe._, Flag._
object LiftableProps extends QuasiquoteProperties("liftable") {
- property("splice byte") = test {
+ property("unquote byte") = test {
val c: Byte = 0
assert(q"$c" ≈ Literal(Constant(c)))
assert(q"${0: Byte}" ≈ Literal(Constant(c)))
}
- property("splice short") = test {
+ property("unquote short") = test {
val c: Short = 0
assert(q"$c" ≈ Literal(Constant(c)))
assert(q"${0: Short}" ≈ Literal(Constant(c)))
}
- property("splice char") = test {
+ property("unquote char") = test {
val c: Char = 'c'
assert(q"$c" ≈ Literal(Constant(c)))
assert(q"${'c'}" ≈ Literal(Constant(c)))
}
- property("splice int") = test {
+ property("unquote int") = test {
val c: Int = 0
assert(q"$c" ≈ Literal(Constant(c)))
assert(q"${0: Int}" ≈ Literal(Constant(c)))
}
- property("splice long") = test {
+ property("unquote long") = test {
val c: Long = 0
assert(q"$c" ≈ Literal(Constant(c)))
assert(q"${0: Long}" ≈ Literal(Constant(c)))
}
- property("splice float") = test {
+ property("unquote float") = test {
val c: Float = 0.0f
assert(q"$c" ≈ Literal(Constant(c)))
assert(q"${0.0f: Float}" ≈ Literal(Constant(c)))
}
- property("splice double") = test {
+ property("unquote double") = test {
val c: Double = 0.0
assert(q"$c" ≈ Literal(Constant(c)))
assert(q"${0.0: Double}" ≈ Literal(Constant(c)))
}
- property("splice boolean") = test {
+ property("unquote boolean") = test {
val c: Boolean = false
assert(q"$c" ≈ Literal(Constant(c)))
assert(q"${true}" ≈ Literal(Constant(true)))
assert(q"${false}" ≈ Literal(Constant(false)))
}
- property("splice string") = test {
+ property("unquote string") = test {
val c: String = "s"
assert(q"$c" ≈ Literal(Constant(c)))
assert(q"${"s"}" ≈ Literal(Constant(c)))
}
- property("splice unit") = test {
+ property("unquote unit") = test {
val c: Unit = ()
assert(q"$c" ≈ Literal(Constant(c)))
assert(q"${()}" ≈ Literal(Constant(c)))