Bytecode: Generieren von FunN%Typ% Interface #189
Labels
No Label
Codegen
confirmed
duplicate
Eclipse-Plugin
Feature Request
generics
in progress
invalid
JavaCompilerCore
needs info
Parser
Trash
Type
Unify
won't fix
works for me
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: JavaTX/JavaCompilerCore#189
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Lambda Ausdrücke werden durch FunN%Typ% Interfaces Typisiert.
Alle auftretenden Typen müssen bei der Bytecodegenerierung als .class Files zusätzlich erzeugt werden. So auch die FunN% Typen.
Beispiel:
class Id{
op = (x)->x;
m() { op.apply(1); }
}
Hier erhält op den Typ Fun1%Integer%Integer%.
Dieser wird momentan noch nicht als .class-File erzeugt
TODO:
Die ClassFile erzeugen. Diese ist ein leeres Interface, welches von Fun1<Integer,Integer> erbt.
OLD BUG