aboutsummaryrefslogtreecommitdiff
path: root/test/stubs/java/lang/runtime/ObjectMethods.java
blob: 519563ae777ae812e0632144c5887b12a63fe551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package java.lang.runtime;

// import java.lang.invoke.MethodHandle;
// import java.lang.invoke.MethodHandles;
// import java.lang.invoke.TypeDescriptor;

public class ObjectMethods {
// 	public static Object bootstrap(MethodHandles.Lookup lookup, String methodName, TypeDescriptor type, Class<?> recordClass, String names, MethodHandle... getters) throws Throwable {
	public static Object bootstrap(Object lookup, String methodName, Object type, Class<?> recordClass, String names, Object... getters) throws Throwable {
		return null;
    }
}