SLC: implement PsiMethod#getThrowsList
This commit is contained in:
committed by
Space Team
parent
42a0acac4f
commit
cc7083d59e
@@ -1,9 +1,9 @@
|
||||
public final class ThrowsAnnotationKt /* ThrowsAnnotationKt*/ {
|
||||
@kotlin.jvm.Throws(exceptionClasses = {java.io.IOException.class, MyException.class})
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static final java.lang.String readFile(@org.jetbrains.annotations.NotNull() java.lang.String);// readFile(java.lang.String)
|
||||
public static final java.lang.String readFile(@org.jetbrains.annotations.NotNull() java.lang.String) throws java.io.IOException, MyException;// readFile(java.lang.String)
|
||||
|
||||
@kotlin.jvm.Throws(exceptionClasses = {java.lang.Throwable.class})
|
||||
public static final void baz();// baz()
|
||||
public static final void baz() throws java.lang.Throwable;// baz()
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user