Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions maven/parparvm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>5.0.3</version>
<version>9.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.ow2.asm/asm-tree -->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>5.0.3</version>
<version>9.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.ow2.asm/asm-commons -->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>5.0.3</version>
<version>9.2</version>
</dependency>

</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ private static void writeFile(ByteCodeClass cls, File outputDir, ConcatenatingFi
}

public Parser() {
super(Opcodes.ASM5);
super(Opcodes.ASM9);
}

@Override
Expand Down Expand Up @@ -738,7 +738,7 @@ public void visit(int version, int access, String name, String signature, String
class MethodVisitorWrapper extends MethodVisitor {
private BytecodeMethod mtd;
public MethodVisitorWrapper(MethodVisitor mv, BytecodeMethod mtd) {
super(Opcodes.ASM5, mv);
super(Opcodes.ASM9, mv);
this.mtd = mtd;
}

Expand Down Expand Up @@ -930,7 +930,7 @@ public void visitParameter(String name, int access) {
class FieldVisitorWrapper extends FieldVisitor {

public FieldVisitorWrapper(FieldVisitor fv) {
super(Opcodes.ASM5, fv);
super(Opcodes.ASM9, fv);
}

@Override
Expand Down Expand Up @@ -958,7 +958,7 @@ public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
class AnnotationVisitorWrapper extends AnnotationVisitor {

public AnnotationVisitorWrapper(AnnotationVisitor av) {
super(Opcodes.ASM5, av);
super(Opcodes.ASM9, av);
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion vm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<maven.compiler.source>1.5</maven.compiler.source>
<maven.compiler.target>1.5</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<asm.version>5.0.3</asm.version>
<asm.version>9.2</asm.version>
<junit.jupiter.version>5.10.2</junit.jupiter.version>
</properties>

Expand Down
Loading