mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
Update lightclass tests renderer
+mute invalid old light classes tests
This commit is contained in:
@@ -1,14 +1,16 @@
|
||||
public final class ClassWithConstructorAndProperties {
|
||||
@org.jetbrains.annotations.Nullable
|
||||
private final java.lang.String nullable;
|
||||
@org.jetbrains.annotations.NotNull
|
||||
private final java.lang.String notNull;
|
||||
public final class ClassWithConstructorAndProperties /* ClassWithConstructorAndProperties*/ {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.String notNull;
|
||||
|
||||
@org.jetbrains.annotations.Nullable
|
||||
public final java.lang.String getNullable() { /* compiled code */ }
|
||||
@org.jetbrains.annotations.Nullable()
|
||||
private final java.lang.String nullable;
|
||||
|
||||
@org.jetbrains.annotations.NotNull
|
||||
public final java.lang.String getNotNull() { /* compiled code */ }
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.String getNotNull();// getNotNull()
|
||||
|
||||
@org.jetbrains.annotations.Nullable()
|
||||
public final java.lang.String getNullable();// getNullable()
|
||||
|
||||
public ClassWithConstructorAndProperties(@org.jetbrains.annotations.Nullable() java.lang.String, @org.jetbrains.annotations.NotNull() java.lang.String);// .ctor(java.lang.String, java.lang.String)
|
||||
|
||||
public ClassWithConstructorAndProperties(@org.jetbrains.annotations.Nullable java.lang.String nullable, @org.jetbrains.annotations.NotNull java.lang.String notNull) { /* compiled code */ }
|
||||
}
|
||||
Reference in New Issue
Block a user