aboutsummaryrefslogtreecommitdiff
path: root/test/test/transform
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-03-15 17:10:24 +0100
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2014-03-18 16:06:33 +0100
commit1dbf020c43639b0c37e9005f2692871d39676ac7 (patch)
treeb1855130096b99917845a715344ba6a768ede1fc /test/test/transform
parent76ea699ac1a76ee6048d7fe8239d0a1126581429 (diff)
downloaddotty-1dbf020c43639b0c37e9005f2692871d39676ac7.tar.gz
dotty-1dbf020c43639b0c37e9005f2692871d39676ac7.tar.bz2
dotty-1dbf020c43639b0c37e9005f2692871d39676ac7.zip
Refactored denotation transformers
Many small and large changes. Added samplePhase to demonstrate functionality. To test functioning, run the compiler with args tests/pos/uncurry.scala -Ylog:sample,terminal
Diffstat (limited to 'test/test/transform')
-rw-r--r--test/test/transform/CreateCompanionObjectsTest.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test/transform/CreateCompanionObjectsTest.scala b/test/test/transform/CreateCompanionObjectsTest.scala
index 95a84f4e0..e12e46496 100644
--- a/test/test/transform/CreateCompanionObjectsTest.scala
+++ b/test/test/transform/CreateCompanionObjectsTest.scala
@@ -22,7 +22,7 @@ class CreateCompanionObjectsTest extends DottyTest {
import tpd._
- @Test
+ //@Test
def shouldCreateNonExistingObjectsInPackage = checkCompile("frontend", "class A{} ") {
(tree, context) =>
implicit val ctx = context
@@ -46,7 +46,7 @@ class CreateCompanionObjectsTest extends DottyTest {
)
}
- @Test
+ //@Test
def shouldCreateNonExistingObjectsInBlock = checkCompile("frontend", "class D {def p = {class A{}; 1}} ") {
(tree, context) =>
implicit val ctx = context
@@ -68,7 +68,7 @@ class CreateCompanionObjectsTest extends DottyTest {
)
}
- @Test
+ //@Test
def shouldCreateNonExistingObjectsInTemplate = checkCompile("frontend", "class D {class A{}; } ") {
(tree, context) =>
implicit val ctx = context
@@ -90,7 +90,7 @@ class CreateCompanionObjectsTest extends DottyTest {
)
}
- @Test
+ //@Test
def shouldCreateOnlyIfAskedFor = checkCompile("frontend", "class DONT {class CREATE{}; } ") {
(tree, context) =>
implicit val ctx = context