This website requires JavaScript.
Explore
Help
Register
Sign In
i21023
/
JavaTXCompilerInJavaTX
Watch
2
Star
0
Fork
0
You've already forked JavaTXCompilerInJavaTX
forked from
JavaTX/JavaCompilerCore
Code
Pull Requests
Activity
targetBytecode
JavaTXCompilerInJavaTX
/
resources
/
bytecode
/
javFiles
/
Field.jav
9 lines
87 B
Plaintext
Raw
Permalink
Normal View
History
Unescape
Escape
Neuer Transivitaet-Algorithmus Step 1 und Step 2
2018-10-25 10:26:56 +00:00
import java.lang.Integer;
modified: src/de/dhbwstuttgart/bytecode/BytecodeGen.java modified: src/de/dhbwstuttgart/bytecode/BytecodeGenMethod.java new file: test/bytecode/FieldTest.java modified: test/bytecode/MatrixOpTest.java new file: test/bytecode/javFiles/Field.jav modified: test/bytecode/javFiles/Sorting.jav Boxing-Problem bei methodCall geloest und Tests funktionieren
2018-10-17 12:29:12 +00:00
public class Field {
modified: src/main/java/de/dhbwstuttgart/parser/SyntaxTreeGenerator/SyntaxTreeGenerator.java - fieldType = TypePlaceholder.fresh(fieldDeclarationContext.getStart()); + fieldType = TypePlaceholder.fresh(fieldDeclarationContext.variableDeclaratorList().getStart()); //PL 2019-12-06: variableDeclaratorList() eingefuegt, um als Token nicht die Modifier zu bekommen
2019-12-06 11:57:07 +00:00
public x = 5;
Neuer Transivitaet-Algorithmus Step 1 und Step 2
2018-10-25 10:26:56 +00:00
m(){
return x;
}
modified: src/de/dhbwstuttgart/bytecode/BytecodeGen.java modified: src/de/dhbwstuttgart/bytecode/BytecodeGenMethod.java new file: test/bytecode/FieldTest.java modified: test/bytecode/MatrixOpTest.java new file: test/bytecode/javFiles/Field.jav modified: test/bytecode/javFiles/Sorting.jav Boxing-Problem bei methodCall geloest und Tests funktionieren
2018-10-17 12:29:12 +00:00
}
Copy Permalink