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,12 +1,12 @@
public interface Generic <N, NN> {
N a(@jet.runtime.typeinfo.JetValueParameter(name = "n") N n);
N a(N n);
@org.jetbrains.annotations.NotNull
NN b(@jet.runtime.typeinfo.JetValueParameter(name = "nn") @org.jetbrains.annotations.NotNull NN nn);
NN b(@org.jetbrains.annotations.NotNull NN nn);
@org.jetbrains.annotations.Nullable
N a1(@jet.runtime.typeinfo.JetValueParameter(name = "n", type = "?") @org.jetbrains.annotations.Nullable N n);
N a1(@org.jetbrains.annotations.Nullable N n);
@org.jetbrains.annotations.Nullable
NN b1(@jet.runtime.typeinfo.JetValueParameter(name = "nn", type = "?") @org.jetbrains.annotations.Nullable NN nn);
NN b1(@org.jetbrains.annotations.Nullable NN nn);
}