-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass.go
1397 lines (1140 loc) · 28.9 KB
/
class.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package main
import (
"encoding/binary"
"fmt"
)
type ClassFile struct {
magic uint32
minorVersion uint16
majorVersion uint16
constantPool []ClassPoolInfo
accessFlags uint16
thisClass uint16
superClass uint16
interfaces []uint16
fields []MemberInfo
methods []MemberInfo
attributes []AttributeInfo
}
type ClassPoolInfo interface{}
type Class struct {
ClassPoolInfo
nameIndex uint16
}
type FieldRef struct {
ClassPoolInfo
classIndex uint16
nameAndTypeIndex uint16
}
type MethodRef struct {
ClassPoolInfo
classIndex uint16
nameAndTypeIndex uint16
}
type InterfaceMethodRef struct {
ClassPoolInfo
classIndex uint16
nameAndTypeIndex uint16
}
type String struct {
ClassPoolInfo
stringIndex uint16
}
type Integer struct {
ClassPoolInfo
bytes uint32
}
type Float struct {
ClassPoolInfo
bytes uint32
}
type Long struct {
ClassPoolInfo
highBytes uint32
lowBytes uint32
}
type Double struct {
ClassPoolInfo
highBytes uint32
lowBytes uint32
}
type NameAndType struct {
ClassPoolInfo
nameIndex uint16
descriptorIndex uint16
}
type Utf8 struct {
ClassPoolInfo
length uint16
bytes []uint8
}
type MethodHandle struct {
ClassPoolInfo
referenceKind uint8
referenceIndex uint16
}
type MethodType struct {
ClassPoolInfo
descriptorIndex uint16
}
type Dynamic struct {
ClassPoolInfo
bootstrapMethodAttrIndex uint16
nameAndTypeIndex uint16
}
type InvokeDynamic struct {
ClassPoolInfo
bootstrapMethodAttrIndex uint16
nameAndTypeIndex uint16
}
type ModuleClassPoolInfo struct {
ClassPoolInfo
nameIndex uint16
}
type Package struct {
ClassPoolInfo
nameIndex uint16
}
type UnknownClassPoolInfo struct {
ClassPoolInfo
tag uint8
}
type ClassReader struct {
data []uint8
}
func (reader *ClassReader) ReadUint8() uint8 {
val := reader.data[0]
reader.data = reader.data[1:]
return val
}
func (reader *ClassReader) ReadUint16() uint16 {
val := binary.BigEndian.Uint16(reader.data)
reader.data = reader.data[2:]
return val
}
func (reader *ClassReader) ReadUint32() uint32 {
val := binary.BigEndian.Uint32(reader.data)
reader.data = reader.data[4:]
return val
}
func (reader *ClassReader) ReadUint64() uint64 {
val := binary.BigEndian.Uint64(reader.data)
reader.data = reader.data[8:]
return val
}
func (reader *ClassReader) ReadUint8s(n uint64) []uint8 {
val := reader.data[:n]
reader.data = reader.data[n:]
return val
}
func (reader *ClassReader) ReadUint16s(n uint64) []uint16 {
val := make([]uint16, n)
for i := uint64(0); i < n; i++ {
val[i] = reader.ReadUint16()
}
return val
}
func (reader *ClassReader) ReadUint32s(n uint64) []uint32 {
val := make([]uint32, n)
for i := uint64(0); i < n; i++ {
val[i] = reader.ReadUint32()
}
return val
}
func (reader *ClassReader) ReadUint64s(n uint64) []uint64 {
val := make([]uint64, n)
for i := uint64(0); i < n; i++ {
val[i] = reader.ReadUint64()
}
return val
}
func (reader *ClassReader) ReadClassPoolInfo() ClassPoolInfo {
tag := reader.ReadUint8()
switch tag {
case 7:
return &Class{
nameIndex: reader.ReadUint16(),
}
case 9:
return &FieldRef{
classIndex: reader.ReadUint16(),
nameAndTypeIndex: reader.ReadUint16(),
}
case 10:
return &MethodRef{
classIndex: reader.ReadUint16(),
nameAndTypeIndex: reader.ReadUint16(),
}
case 11:
return &InterfaceMethodRef{
classIndex: reader.ReadUint16(),
nameAndTypeIndex: reader.ReadUint16(),
}
case 8:
return &String{
stringIndex: reader.ReadUint16(),
}
case 3:
return &Integer{
bytes: reader.ReadUint32(),
}
case 4:
return &Float{
bytes: reader.ReadUint32(),
}
case 5:
return &Long{
highBytes: reader.ReadUint32(),
lowBytes: reader.ReadUint32(),
}
case 6:
return &Double{
highBytes: reader.ReadUint32(),
lowBytes: reader.ReadUint32(),
}
case 12:
return &NameAndType{
nameIndex: reader.ReadUint16(),
descriptorIndex: reader.ReadUint16(),
}
case 1:
length := reader.ReadUint16()
bytes := reader.ReadUint8s(uint64(length))
return &Utf8{
length: length,
bytes: bytes,
}
case 15:
return &MethodHandle{
referenceKind: reader.ReadUint8(),
referenceIndex: reader.ReadUint16(),
}
case 16:
return &MethodType{
descriptorIndex: reader.ReadUint16(),
}
case 17:
return &Dynamic{
bootstrapMethodAttrIndex: reader.ReadUint16(),
nameAndTypeIndex: reader.ReadUint16(),
}
case 18:
return &InvokeDynamic{
bootstrapMethodAttrIndex: reader.ReadUint16(),
nameAndTypeIndex: reader.ReadUint16(),
}
case 19:
return &ModuleClassPoolInfo{
nameIndex: reader.ReadUint16(),
}
case 20:
return &Package{
nameIndex: reader.ReadUint16(),
}
default:
return &UnknownClassPoolInfo{
tag: tag,
}
}
}
func AsString(info ClassPoolInfo) string {
if utf8, ok := info.(*Utf8); ok {
return string(utf8.bytes)
}
return ""
}
type MemberInfo struct {
accessFlags uint16
nameIndex uint16
descriptorIndex uint16
attributesCount uint16
attributes []AttributeInfo
}
type AttributeInfo struct {
attributeNameIndex uint16
attributeLength uint32
attrType AttributeType
}
type AttributeType interface{}
type ConstantValue struct {
AttributeType
constantValueIndex uint16
}
type Code struct {
AttributeType
maxStack uint16
maxLocals uint16
codeLength uint32
code []uint8
exceptionTable []ExceptionTableEntry
attributes []AttributeInfo
}
type StackMapTable struct {
AttributeType
numberOfEntries uint16
entries []StackMapFrame
}
type StackMapFrame interface{}
type SameFrame struct {
StackMapFrame
frameType uint8
}
type SameLocals1StackItemFrame struct {
StackMapFrame
frameType uint8
stack VerificationTypeInfo
}
type SameLocals1StackItemFrameExtended struct {
StackMapFrame
frameType uint8
offsetDelta uint16
stack VerificationTypeInfo
}
type ChopFrame struct {
StackMapFrame
frameType uint8
offsetDelta uint16
}
type SameFrameExtended struct {
StackMapFrame
frameType uint8
offsetDelta uint16
}
type AppendFrame struct {
StackMapFrame
frameType uint8
offsetDelta uint16
locals []VerificationTypeInfo
}
type FullFrame struct {
StackMapFrame
frameType uint8
offsetDelta uint16
numberOfLocals uint16
locals []VerificationTypeInfo
numberOfStackItems uint16
stack []VerificationTypeInfo
}
type ExceptionTableEntry struct {
startPc uint16
endPc uint16
handlerPc uint16
catchType uint16
}
type VerificationTypeInfo interface{}
type TopVariable struct {
VerificationTypeInfo
}
type IntegerVariable struct {
VerificationTypeInfo
}
type FloatVariable struct {
VerificationTypeInfo
}
type NullVariable struct {
VerificationTypeInfo
}
type UninitializedThisVariable struct {
VerificationTypeInfo
}
type ObjectVariable struct {
VerificationTypeInfo
cpoolIndex uint16
}
type UninitializedVariable struct {
VerificationTypeInfo
offset uint16
}
type LongVariable struct {
VerificationTypeInfo
}
type DoubleVariable struct {
VerificationTypeInfo
}
type Exceptions struct {
AttributeType
numberOfExceptions uint16
exceptionIndices []uint16
}
type InnerClasses struct {
AttributeType
numberOfClasses uint16
classes []InnerClass
}
type InnerClass struct {
innerClassInfoIndex uint16
outerClassInfoIndex uint16
innerNameIndex uint16
innerClassAccessFlags uint16
}
type EnclosingMethod struct {
AttributeType
classIndex uint16
methodIndex uint16
}
type Synthetic struct {
AttributeType
}
type Signature struct {
AttributeType
signatureIndex uint16
}
type SourceFile struct {
AttributeType
sourceFileIndex uint16
}
type SourceDebugExtension struct {
AttributeType
debugExtension []uint8
}
type LineNumberTable struct {
AttributeType
lineNumberTable []LineNumber
}
type LineNumber struct {
startPc uint16
lineNumber uint16
}
type LocalVariableTable struct {
AttributeType
localVariableTable []LocalVariable
}
type LocalVariable struct {
startPc uint16
length uint16
nameIndex uint16
descriptorIndex uint16
index uint16
}
type LocalVariableTypeTable struct {
AttributeType
localVariableTypeTable []LocalVariableType
}
type LocalVariableType struct {
startPc uint16
length uint16
nameIndex uint16
signatureIndex uint16
index uint16
}
type Deprecated struct {
AttributeType
}
type RuntimeVisibleAnnotations struct {
AttributeType
annotations []Annotation
}
type Annotation struct {
typeIndex uint16
elementPairs []ElementPair
}
type ElementPair struct {
elementNameIndex uint16
value ElementValue
}
type ElementValue struct {
tag uint8
value ElementValueInner
}
type ElementValueInner interface{}
type ConstantValueIndex struct {
ElementValueInner
constantValueIndex uint16
}
type EnumConstantValue struct {
ElementValueInner
typeNameIndex uint16
constantNameIndex uint16
}
type ClassInfoIndex struct {
ElementValueInner
classInfoIndex uint16
}
type AnnotationValue struct {
ElementValueInner
annotationValue []Annotation
}
type ArrayValue struct {
ElementValueInner
values []ElementValue
}
type RuntimeInvisibleAnnotations struct {
AttributeType
annotations []Annotation
}
type RuntimeInvisibleParameterAnnotations struct {
AttributeType
parameterAnnotations []ParameterAnnotation
}
type ParameterAnnotation struct {
parameterIndex uint8
annotations []Annotation
}
type RuntimeVisibleParameterAnnotations struct {
AttributeType
parameterAnnotations []ParameterAnnotation
}
type AnnotationDefault struct {
AttributeType
defaultValue ElementValue
}
type BootstrapMethods struct {
AttributeType
numberOfBootstrapMethods uint16
bootstrapMethods []BootstrapMethod
}
type BootstrapMethod struct {
bootstrapMethodRef uint16
bootstrapArguments []uint16
}
type MethodParameters struct {
AttributeType
numberOfParameters uint8
parameters []MethodParameter
}
type MethodParameter struct {
nameIndex uint16
accessFlags uint16
}
type Module struct {
AttributeType
moduleNameIndex uint16
moduleFlags uint16
moduleVersionIndex uint16
moduleInfo ModuleInfo
}
type ModuleInfo struct {
requiresCount uint16
requires []ModuleRequire
exportsCount uint16
exports []ModuleExport
opensCount uint16
opens []ModuleOpen
usesCount uint16
usesIndex []uint16
providesCount uint16
provides []ModuleProvide
}
type ModuleRequire struct {
requiresIndex uint16
requiresFlags uint16
requiresVersionIndex uint16
}
type ModuleExport struct {
exportsIndex uint16
exportsFlags uint16
exportsToCount uint16
exportsToIndex []uint16
}
type ModuleOpen struct {
opensIndex uint16
opensFlags uint16
opensToCount uint16
opensToIndex []uint16
}
type ModuleProvide struct {
providesIndex uint16
providesWithCount uint16
providesWithIndex []uint16
}
type ModulePackages struct {
AttributeType
numberOfPackages uint16
packages []uint16
}
type ModuleMainClass struct {
AttributeType
mainClassIndex uint16
}
type NestHost struct {
AttributeType
classIndex uint16
}
type NestMembers struct {
AttributeType
numberOfClasses uint16
classes []uint16
}
type Record struct {
AttributeType
componentsCount uint16
components []RecordComponentInfo
}
type RecordComponentInfo struct {
nameIndex uint16
descriptorIndex uint16
attributeInfo []AttributeInfo
}
type UnknownAttributeType struct {
AttributeType
data []uint8
}
func (reader *ClassReader) ReadClassFile() *ClassFile {
magic := reader.ReadUint32()
if magic != 0xCAFEBABE {
panic("magic number error")
}
minor := reader.ReadUint16()
major := reader.ReadUint16()
constantPoolCount := reader.ReadUint16()
constantPool := make([]ClassPoolInfo, constantPoolCount)
for i := 1; i < int(constantPoolCount); i++ {
constantPool[i] = reader.ReadClassPoolInfo()
}
accessFlags := reader.ReadUint16()
thisClass := reader.ReadUint16()
superClass := reader.ReadUint16()
interfacesCount := reader.ReadUint16()
interfaces := reader.ReadUint16s(uint64(interfacesCount))
fieldsCount := reader.ReadUint16()
fields := make([]MemberInfo, fieldsCount)
for i := 0; i < int(fieldsCount); i++ {
fields[i] = reader.ReadMemberInfo(constantPool)
}
methodsCount := reader.ReadUint16()
methods := make([]MemberInfo, methodsCount)
for i := 0; i < int(methodsCount); i++ {
methods[i] = reader.ReadMemberInfo(constantPool)
}
attributesCount := reader.ReadUint16()
attributes := make([]AttributeInfo, attributesCount)
for i := 0; i < int(attributesCount); i++ {
attributes[i] = reader.ReadAttributeInfo(constantPool)
}
return &ClassFile{
magic,
minor,
major,
constantPool,
accessFlags,
thisClass,
superClass,
interfaces,
fields,
methods,
attributes,
}
}
func (reader *ClassReader) ReadMemberInfo(cp []ClassPoolInfo) MemberInfo {
accessFlags := reader.ReadUint16()
nameIndex := reader.ReadUint16()
descriptorIndex := reader.ReadUint16()
attributesCount := reader.ReadUint16()
attributes := make([]AttributeInfo, attributesCount)
for i := 0; i < int(attributesCount); i++ {
attributes[i] = reader.ReadAttributeInfo(cp)
}
return MemberInfo{
accessFlags,
nameIndex,
descriptorIndex,
attributesCount,
attributes,
}
}
func (reader *ClassReader) ReadAttributeInfo(cp []ClassPoolInfo) AttributeInfo {
attributeNameIndex := reader.ReadUint16()
attributeLength := reader.ReadUint32()
attributeName := AsString(cp[attributeNameIndex])
return AttributeInfo{
attributeNameIndex,
attributeLength,
reader.ReadAttributeType(attributeLength, attributeName, cp),
}
}
func (reader *ClassReader) ReadAttributeType(attributeLength uint32, attributeName string, cp []ClassPoolInfo) AttributeType {
switch attributeName {
case "ConstantValue":
return ConstantValue{
constantValueIndex: reader.ReadUint16(),
}
case "Code":
maxStack := reader.ReadUint16()
maxLocals := reader.ReadUint16()
codeLength := reader.ReadUint32()
code := reader.ReadUint8s(uint64(codeLength))
return Code{
maxStack: maxStack,
maxLocals: maxLocals,
codeLength: codeLength,
code: code,
exceptionTable: reader.ReadExceptionTable(),
attributes: reader.ReadAttributes(reader.ReadUint16(), cp),
}
case "StackMapTable":
numberOfEntries := reader.ReadUint16()
return StackMapTable{
numberOfEntries: numberOfEntries,
entries: reader.ReadStackMapTableEntries(numberOfEntries),
}
case "Exceptions":
return Exceptions{
numberOfExceptions: reader.ReadUint16(),
exceptionIndices: reader.ReadUint16s(uint64(attributeLength)),
}
case "InnerClasses":
numberOfClasses := reader.ReadUint16()
return InnerClasses{
numberOfClasses: numberOfClasses,
classes: reader.ReadInnerClasses(numberOfClasses),
}
case "EnclosingMethod":
return EnclosingMethod{
classIndex: reader.ReadUint16(),
methodIndex: reader.ReadUint16(),
}
case "Synthetic":
return Synthetic{}
case "SourceFile":
return SourceFile{
sourceFileIndex: reader.ReadUint16(),
}
case "SourceDebugExtension":
return SourceDebugExtension{
debugExtension: reader.ReadUint8s(uint64(attributeLength)),
}
case "LineNumberTable":
return LineNumberTable{
lineNumberTable: reader.ReadLineNumberTable(),
}
case "LocalVariableTable":
return LocalVariableTable{
localVariableTable: reader.ReadLocalVariableTable(),
}
case "LocalVariableTypeTable":
return LocalVariableTypeTable{
localVariableTypeTable: reader.ReadLocalVariableTypeTable(),
}
case "Deprecated":
return Deprecated{}
case "Signature":
return Signature{
signatureIndex: reader.ReadUint16(),
}
case "RuntimeVisibleAnnotations":
return RuntimeVisibleAnnotations{
annotations: reader.ReadAnnotations(),
}
case "RuntimeInvisibleAnnotations":
return RuntimeInvisibleAnnotations{
annotations: reader.ReadAnnotations(),
}
case "RuntimeVisibleParameterAnnotations":
return RuntimeVisibleParameterAnnotations{
parameterAnnotations: reader.ReadParameterAnnotations(),
}
case "RuntimeInvisibleParameterAnnotations":
return RuntimeInvisibleParameterAnnotations{
parameterAnnotations: reader.ReadParameterAnnotations(),
}
case "AnnotationDefault":
return AnnotationDefault{
defaultValue: reader.ReadElementValue(),
}
case "BootstrapMethods":
numberOfBootstrapMethods := reader.ReadUint16()
return BootstrapMethods{
numberOfBootstrapMethods: numberOfBootstrapMethods,
bootstrapMethods: reader.ReadBootstrapMethods(numberOfBootstrapMethods),
}
case "MethodParameters":
numberOfParameters := reader.ReadUint8()
return MethodParameters{
numberOfParameters: numberOfParameters,
parameters: reader.ReadMethodParameters(numberOfParameters),
}
case "Module":
return Module{
moduleNameIndex: reader.ReadUint16(),
moduleFlags: reader.ReadUint16(),
moduleVersionIndex: reader.ReadUint16(),
moduleInfo: reader.ReadModuleInfo(),
}
case "ModulePackages":
numberOfPackages := reader.ReadUint16()
return ModulePackages{
numberOfPackages: numberOfPackages,
packages: reader.ReadUint16s(uint64(numberOfPackages)),
}
case "ModuleMainClass":
return ModuleMainClass{
mainClassIndex: reader.ReadUint16(),
}
case "NestHost":
return NestHost{
classIndex: reader.ReadUint16(),
}
case "NestMembers":
return NestMembers{
numberOfClasses: reader.ReadUint16(),
classes: reader.ReadUint16s(uint64(attributeLength)),
}
case "Record":
componentsCount := reader.ReadUint16()
return Record{
componentsCount: componentsCount,
components: reader.ReadRecordComponentInfos(componentsCount, cp),
}
default:
return UnknownAttributeType{
data: reader.ReadUint8s(uint64(attributeLength)),
}
}
}
func (reader *ClassReader) ReadLocalVariableTypeTable() []LocalVariableType {
numberOfEntries := reader.ReadUint16()
localVariableTypes := make([]LocalVariableType, numberOfEntries)
for i := 0; i < int(numberOfEntries); i++ {
localVariableTypes[i] = LocalVariableType{
startPc: reader.ReadUint16(),
length: reader.ReadUint16(),
nameIndex: reader.ReadUint16(),
signatureIndex: reader.ReadUint16(),
index: reader.ReadUint16(),
}
}
return localVariableTypes
}
func (reader *ClassReader) ReadRecordComponentInfos(componentsCount uint16, cp []ClassPoolInfo) []RecordComponentInfo {
components := make([]RecordComponentInfo, componentsCount)
for i := uint16(0); i < componentsCount; i++ {
components[i] = RecordComponentInfo{
nameIndex: reader.ReadUint16(),
descriptorIndex: reader.ReadUint16(),
attributeInfo: reader.ReadAttributes(reader.ReadUint16(), cp),
}
}