We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ee4e11 commit 9b82362Copy full SHA for 9b82362
1 file changed
example/classfile.ts
@@ -719,7 +719,7 @@ var ConstantClassInfo = Parser.start().uint16be("name_index");
719
InstructionParser
720
]
721
}),
722
- lengthInBytes: function (item, buffer) {
+ lengthInBytes: function (item) {
723
//console.log("eyy", this, this.$parent.code_length);
724
return this.$parent.code_length;
725
}
@@ -772,7 +772,7 @@ var ConstantClassInfo = Parser.start().uint16be("name_index");
772
.uint16("count")
773
.array("entries", {
774
type: CpInfo,
775
- readUntil: function (item, buffer, offset) {
+ readUntil: function (item, buffer) {
776
if (this.entries.length >= this.count - 1) return true;
777
// Check if we've just read a long or double
778
if (item.tag === 5 || item.tag === 6) {
0 commit comments