Converter:

Preserve white spaces inside code blocks
Introduce WhiteSpaceSeparatedElementList which keeps track of whitespaces
Introduce StatementList
Change old test data accordingly
This commit is contained in:
Pavel Talanov
2013-12-02 17:40:39 +04:00
committed by Pavel V. Talanov
parent fabfcb4271
commit 8577d3ca55
34 changed files with 183 additions and 30 deletions
@@ -13,6 +13,7 @@ public class Test(str: String) {
val test = "String2"
sout(test)
sout(dummy(test))
Test(test)
}
{
@@ -13,6 +13,7 @@ public open class Test(str: String) {
var test: String = "String2"
sout(test)
sout(dummy(test))
Test(test)
}
{