| 29 | ) |
| 30 | |
| 31 | type AMF3 struct { |
| 32 | AMF |
| 33 | scEnc map[string]int |
| 34 | scDec []string |
| 35 | ocEnc map[uintptr]int |
| 36 | ocDec []any |
| 37 | reservStruct bool |
| 38 | } |
| 39 | |
| 40 | func (amf *AMF3) readString() (string, error) { |
| 41 | index, err := amf.readU29() |
nothing calls this directly
no outgoing calls
no test coverage detected