Add generalized methods to InlineMarker

To be able to use them in the future compiler without breaking binary
compatibility
This commit is contained in:
Alexander Udalov
2015-10-15 15:06:49 +03:00
parent 3f9806d758
commit 121807654a
@@ -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) {
}
}
}