JVM, JVM_IR: no nullability annotations on private and synthetic methods

NB it looks like it doesn't cover all cases, e.g., some synthetic
methods generated for suspend functions.
This commit is contained in:
Dmitry Petrov
2020-06-26 12:06:24 +03:00
parent 5684e694b5
commit 2137a4b1e5
31 changed files with 163 additions and 156 deletions
@@ -23,7 +23,6 @@ import java.lang.System;
@kotlin.Metadata()
@Anno()
public final class User {
@org.jetbrains.annotations.NotNull()
private final java.lang.String name = "John";
@org.jetbrains.annotations.NotNull()
@@ -25,7 +25,6 @@ import java.lang.System;
public final class State {
private final int someInt = 0;
private final long someLong = 0L;
@org.jetbrains.annotations.NotNull()
private final java.lang.String someString = null;
public final int getSomeInt() {