MCPcopy Create free account
hub / github.com/IntegralPilot/rustc_codegen_jvm / merge_input_jars

Function merge_input_jars

java-linker/src/main.rs:539–558  ·  view source on GitHub ↗
(
    app_jar_path: Option<&Path>,
    library_jar_paths: &[PathBuf],
    output_jar_path: &Path,
)

Source from the content-addressed store, hash-verified

537 remap_stack_frame(frame, indexes)?;
538 }
539 }
540 Attribute::Exceptions {
541 name_index,
542 exception_indexes,
543 } => {
544 *name_index = remapped_constant_index(*name_index, indexes)?;
545 for index in exception_indexes {
546 *index = remapped_constant_index(*index, indexes)?;
547 }
548 }
549 Attribute::Signature {
550 name_index,
551 signature_index,
552 } => {
553 *name_index = remapped_constant_index(*name_index, indexes)?;
554 *signature_index = remapped_constant_index(*signature_index, indexes)?;
555 }
556 Attribute::LineNumberTable { name_index, .. }
557 | Attribute::Synthetic { name_index }
558 | Attribute::Deprecated { name_index } => {
559 *name_index = remapped_constant_index(*name_index, indexes)?;
560 }
561 Attribute::LocalVariableTable {

Callers 1

create_jarFunction · 0.85

Calls 1

copy_jar_entriesFunction · 0.85

Tested by

no test coverage detected