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

View File

@@ -1,4 +1,4 @@
public final class ClassWithConstructor implements jet.JetObject {
@org.jetbrains.annotations.NotNull
public ClassWithConstructor(@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 ClassWithConstructor(@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 */ }
}