replace 'trait' keyword with 'interface' in user-visible messages and code generation tools

This commit is contained in:
Dmitry Jemerov
2015-05-11 19:37:38 +02:00
parent 25959fefdc
commit 9975bb8935
704 changed files with 1684 additions and 1727 deletions

View File

@@ -2,13 +2,13 @@ package test
public /*synthesized*/ fun J(/*0*/ function: (test.K!) -> kotlin.Unit): test.J
public trait J {
public interface J {
public abstract fun foo(/*0*/ p0: test.K!): kotlin.Unit
}
internal trait K {
internal interface K {
}
internal trait K1 : test.J {
internal interface K1 : test.J {
public abstract override /*1*/ fun foo(/*0*/ k: test.K?): kotlin.Unit
}