MCPcopy Create free account
hub / github.com/andreabergia/rjvm / read_string_reference

Method read_string_reference

reader/src/class_reader.rs:222–224  ·  view source on GitHub ↗
(&self, index: u16)

Source from the content-addressed store, hash-verified

220 }
221
222 fn read_string_reference(&self, index: u16) -> Result<String> {
223 Self::read_string_reference_from(&self.class_file.constants, index)
224 }
225
226 fn read_string_reference_from(constants_pool: &ConstantPool, index: u16) -> Result<String> {
227 constants_pool.text_of(index).map_err(|err| err.into())

Callers 7

read_class_referenceMethod · 0.80
read_fieldMethod · 0.80
read_methodMethod · 0.80
read_exception_tableMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected