Typen Methoden werden nicht bei Methodcalls nicht eingesetzt. #188
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
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: JavaTX/JavaCompilerCore#188
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?
In
class OL {
}
class Main {
}
wird Folgendes falsch erzeugt:
public java.lang.Object main(java.lang.Boolean);
descriptor: (Ljava/lang/Boolean;)Ljava/lang/Object;
flags: ACC_PUBLIC
Signature: #30 // (Ljava/lang/Boolean;)Ljava/lang/Object;
Code:
stack=2, locals=3, args_size=2
0: new #8 // class OL
3: dup
4: invokespecial #12 // Method OL."":()V
7: astore_2
8: aload_2
9: aload_1
FALSCH:
10: invokevirtual #32 // Method OL.m:(Ljava/lang/Boolean;)Ljava/lang/Object;
HIER MUESSTE
10: invokevirtual ... // Method OL.m:(Ljava/lang/Boolean;)Ljava/lang/Boolean;
STEHEN
13: areturn
OLD BUG