Add generalized methods to InlineMarker
To be able to use them in the future compiler without breaking binary compatibility
This commit is contained in:
@@ -17,26 +17,21 @@
|
||||
package kotlin.jvm.internal;
|
||||
|
||||
public class InlineMarker {
|
||||
public static void mark(int i) {
|
||||
}
|
||||
|
||||
public static void mark(String name) {
|
||||
}
|
||||
|
||||
public static void beforeInlineCall() {
|
||||
|
||||
}
|
||||
|
||||
public static void afterInlineCall() {
|
||||
|
||||
}
|
||||
|
||||
//TODO: remove on ABI increment, kept only for compability
|
||||
@Deprecated
|
||||
public static void goToTryCatchBlockEnd() {
|
||||
|
||||
}
|
||||
|
||||
public static void finallyStart(int finallyDepth) {
|
||||
|
||||
}
|
||||
|
||||
public static void finallyEnd(int finallyDepth) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user