Always generate local variable table to preserve parameter names

This commit is contained in:
Andrey Breslav
2013-11-08 19:03:48 +04:00
committed by Nikolay Krasko
parent 4348678cea
commit 0c1c0e0099
9 changed files with 32 additions and 20 deletions
@@ -11,5 +11,5 @@ public final class ClassWithConstructorAndProperties implements jet.JetObject {
public final java.lang.String getNotNull() { /* compiled code */ }
@org.jetbrains.annotations.NotNull
public ClassWithConstructorAndProperties(@org.jetbrains.annotations.Nullable @jet.runtime.typeinfo.JetValueParameter(name = "nullable", type = "?") java.lang.String p, @org.jetbrains.annotations.NotNull @jet.runtime.typeinfo.JetValueParameter(name = "notNull") java.lang.String p1) { /* compiled code */ }
public ClassWithConstructorAndProperties(@org.jetbrains.annotations.Nullable @jet.runtime.typeinfo.JetValueParameter(name = "nullable", type = "?") java.lang.String nullable, @org.jetbrains.annotations.NotNull @jet.runtime.typeinfo.JetValueParameter(name = "notNull") java.lang.String notNull) { /* compiled code */ }
}