fix tests by adding missing 'init' keywords to testdata

This commit is contained in:
Dmitry Jemerov
2015-04-27 13:23:15 +02:00
parent 98b8784ab0
commit f93eeeb563
130 changed files with 277 additions and 305 deletions
@@ -1,5 +1,5 @@
open class A() {
{
init {
do <selection>1</selection> while (true)
}
}
@@ -1,5 +1,5 @@
open class A() {
{
init {
do {
val i = 1
} while (true)
@@ -1,5 +1,5 @@
open class A() {
{
init {
do println(<selection>1</selection>) while (true)
}
}
@@ -1,5 +1,5 @@
open class A() {
{
init {
do {
val i = 1
println(i)
@@ -1,5 +1,5 @@
open class A() {
{
init {
while (true) <selection>1</selection>
}
}
@@ -1,5 +1,5 @@
open class A() {
{
init {
while (true) {
val i = 1
}
@@ -1,5 +1,5 @@
open class A() {
{
init {
while (true) println(<selection>1</selection>)
}
}
@@ -1,5 +1,5 @@
open class A() {
{
init {
while (true) {
val i = 1
println(i)