From d4256b1626604dde755eb65890680f2e8166a060 Mon Sep 17 00:00:00 2001 From: Andreas Gal Date: Sat, 12 Jul 2014 15:03:46 -0700 Subject: [PATCH] fix method invocation --- frame.js | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/frame.js b/frame.js index e47c5be8..4a8da884 100644 --- a/frame.js +++ b/frame.js @@ -6,7 +6,8 @@ var Frame = function(classData, method) { if (this instanceof Frame) { this.cp = classData.getConstantPool(); - this.access_flags = method.access_flags; + this.classData = classData; + this.method = method; this.signature = Signature.parse(this.cp[method.signature_index].bytes); for(var i=0; i