Skip to content

Commit 6e4f59c

Browse files
committed
updated asm gen
1 parent 442e03b commit 6e4f59c

12 files changed

+756
-2
lines changed

asmetal2java_codegen/src/org/asmeta/asm2java/main/JavaASMGenerator.xtend

Lines changed: 754 additions & 0 deletions
Large diffs are not rendered by default.

asmetal2java_codegen/src/org/asmeta/asm2java/main/MainClass.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class MainClass {
4444
// the generator for the code
4545
static private JavaGenerator jGenerator = new JavaGenerator();
4646
static private JavaExeGenerator jGeneratorExe = new JavaExeGenerator();
47-
static private JavaASMGenerator2 jGeneratorASM = new JavaASMGenerator2();
47+
static private JavaASMGenerator jGeneratorASM = new JavaASMGenerator();
4848

4949

5050
// default translator options
Binary file not shown.
Binary file not shown.
Binary file not shown.

asmetal2java_codegen/xtend-gen/org/asmeta/asm2java/main/JavaASMGenerator2.java renamed to asmetal2java_codegen/xtend-gen/org/asmeta/asm2java/main/JavaASMGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import org.junit.Assert;
2424

2525
@SuppressWarnings("all")
26-
public class JavaASMGenerator2 extends AsmToJavaGenerator {
26+
public class JavaASMGenerator extends AsmToJavaGenerator {
2727
public void compileAndWrite(final Asm asm, final String writerPath, final TranslatorOptions userOptions) {
2828
Assert.assertTrue(writerPath.endsWith(".java"));
2929
this.compileAndWrite(asm, writerPath, "JAVA", userOptions);

0 commit comments

Comments
 (0)