Don't generate ValueParameter annotations in light class mode

This commit is contained in:
Nikolay Krasko
2014-09-19 20:43:39 +04:00
parent 432ec31daf
commit f5ee68064f
15 changed files with 38 additions and 36 deletions
@@ -1,6 +1,6 @@
public final class Derived implements kotlin.jvm.internal.KObject, Base {
public Derived(@jet.runtime.typeinfo.JetValueParameter(name = "x") @org.jetbrains.annotations.NotNull Base x) { /* compiled code */ }
public Derived(@org.jetbrains.annotations.NotNull Base x) { /* compiled code */ }
@org.jetbrains.annotations.NotNull
public java.lang.String baz(@jet.runtime.typeinfo.JetValueParameter(name = "s") @org.jetbrains.annotations.NotNull java.lang.String s) { /* compiled code */ }
public java.lang.String baz(@org.jetbrains.annotations.NotNull java.lang.String s) { /* compiled code */ }
}