mirror of
https://github.com/FranzHaidnor/haidnorJVM.git
synced 2026-03-14 06:03:50 +08:00
upd JavaMethod
This commit is contained in:
@@ -51,9 +51,9 @@ public class Frame {
|
||||
*/
|
||||
private final Slot[] slots;
|
||||
|
||||
public Frame(JVMThread thread, JavaClass javaClass, JavaMethod javaMethod) {
|
||||
public Frame(JVMThread thread, JavaMethod javaMethod) {
|
||||
this.jvmThread = thread;
|
||||
this.javaClass = javaClass;
|
||||
this.javaClass = javaMethod.getJavaClass();
|
||||
this.javaMethod = javaMethod;
|
||||
this.code = javaMethod.getCode();
|
||||
this.codeStream = new CodeStream(javaMethod.getCode());
|
||||
|
||||
Reference in New Issue
Block a user