• Joined on 2023-12-15
pl opened issue JavaTX/JavaCompilerCore#150 2019-12-05 14:53:57 +00:00
Wenn man in Progress den cancel-Button drück hört Typereconstruction nicht auf.
pl opened issue JavaTX/JavaCompilerCore#149 2019-12-05 14:52:27 +00:00
import java.lang.Integer; public class Fac { getFac(java.lang.Integer n){ var res = 1; var i = 1; while(i<=n) { res = res * i; i++; } return res; } } liefert >…
pl opened issue JavaTX/JavaCompilerCore#148 2019-12-05 14:49:38 +00:00
Beispiel class MathStruc { model; innerOp = (o) -> (ms) -> new MathStruc<>(o.apply(model,ms.model)); MathStruc(m) { model =m; } } führt zu class MathStruc <AOMS extends ASVJ, …
pl opened issue JavaTX/JavaCompilerCore#147 2019-12-05 14:45:30 +00:00
Beispiel class Id { id2 = x -> x; id(x) { return x; } id3(x) { return id(x); } } führt zu class Id <AOLW extends AOLX, AOLX> { id2 = x -> x; id…
pl opened issue JavaTX/JavaCompilerCore#146 2019-12-05 14:42:35 +00:00
Beispiel public field; führt zu Integer public field;
pl opened issue JavaTX/JavaCompilerCore#145 2019-12-05 14:40:35 +00:00
Derzeit werden beim Laden und Speichern keine .class-Files erzeugt
pl commented on issue JavaTX/JavaCompilerCore#56 2019-11-21 15:27:55 +00:00
Bytrecodeerzeugung: Aufruf von Methode mit unterschiedliche Typvariablen schlägt fehl

so funktioniert es auch nicht

import java.lang.Integer;

public class Overloading_Generics {

id (x) { return x; }

//Integer id (Integer x) { return x; }

}

class Overloading_Gene…

pl opened issue JavaTX/JavaCompilerCore#56 2019-11-21 14:46:33 +00:00
Für das Programm import java.lang.Integer; public class Overloading_Generics { id (x) { return x; } //Integer id (Integer x) { return x; } } class Overloading_Generics1 { m…
pl opened issue JavaTX/JavaCompilerCore#55 2019-10-24 11:57:49 +00:00
Wenn ein Typ FUN1$$<Integer,Integer> inferiert könnte die Typinformation im Class-File FUN1$$<? super Integer,? extends Integer> sein. Beispiel mathStruc.class javap mathStruc.class Compi…
pl opened issue JavaTX/JavaCompilerCore#144 2019-10-24 11:00:06 +00:00
class Id { id2 = x -> x; id(x) { return x; } id3(x) { return id(x); } } sollte ergeben: class Id<TBA$ extends TAZ$, TAZ$> { Fun1$$<TBA$, TAZ$> id2; publi…
pl opened issue JavaTX/JavaCompilerCore#54 2019-10-10 18:53:30 +00:00
branch: bytecode2 commit: a24080e22c04f6e50ed2a508c164270c0a9514c5 public class mathStruc { model; //Fun1*<Fun2*<A,A,A>, Fun1*<MathStruc <A>,MathStruc <A>>> innerOp = (o) -> (ms) -> n…
pl commented on issue JavaTX/JavaCompilerCore#53 2019-10-10 18:39:19 +00:00
Nullpointer in Lambda-Ausdruck

bestätigt

pl commented on issue JavaTX/JavaCompilerCore#36 2019-10-10 17:35:45 +00:00
Rekursiver Aufruf von Attributen Y.jav

import java.lang.Integer; class Y { y; //factorial;

Y() {
	y =  f -> t -> f.apply(y.apply(f)).apply(t);
	//factorial = y.apply(f -> n -> { if (n == 0) return 1; else return n *…
pl commented on issue JavaTX/JavaCompilerCore#36 2019-09-19 13:58:46 +00:00
Rekursiver Aufruf von Attributen Y.jav

branch: bytecode2 commit: 37f8f2e1e09736c9e018d062c8efaa09a1c69953

de.dhbwstuttgart.exceptions.TypeinferenceException: Unresolved constraints: [[(Y<java.lang.Integer,java.lang.Integer,java.…

pl opened issue JavaTX/JavaCompilerCore#53 2019-08-23 15:03:47 +00:00
Branch: origin/bytecode2 commit: a41e9804a07db07f13ecee5c4c1908c4235a6d70 mathStruc java.lang.NullPointerException at org.objectweb.asm.SymbolTable.hash(SymbolTable.java:1264) at org.obj…
pl commented on issue JavaTX/JavaCompilerCore#51 2019-08-01 09:44:22 +00:00
Sorting.class enthält falsche Typvariablen

bestätigt

pl commented on issue JavaTX/JavaCompilerCore#45 2019-08-01 09:35:57 +00:00
Fehler bei Typvariablen in generischen Typen

bestätigt

pl commented on issue JavaTX/JavaCompilerCore#46 2019-08-01 09:06:23 +00:00
Id angwandt funktioniert nicht

bestätigt

pl commented on issue JavaTX/JavaCompilerCore#28 2019-07-31 17:13:11 +00:00
Zuviele Typvariablen erzeugt

Bestätigt

pl opened issue JavaTX/JavaCompilerCore#52 2019-07-11 14:31:08 +00:00
Bei folgendem Programm import java.util.Vector; import java.util.Collection; class AddEle { addEle(z) { var x; var y; x.add(y); z = x; } } tritt dieser Fehler auf: java.lang.Nu…