Long und Float Literals nicht implementiert #303
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#303
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?
Aktuell funktionieren Long und Float Literals in JavaTX nicht. Sie werden zwar vom Parser akzeptiert, dann aber wohl nicht richtig weiter verarbeitet. Im Fall vom Long Literal fliegt folgende Exception:
Exception in thread "main" java.lang.NumberFormatException: For input string: "10L"
. Hier scheint aber nicht mal die Grammatik das LongLiteral zu erkennen, stattdessen wird es als IntegerLiteral mit Wert 10L eingelesen.Beispiel:
Quellcode
Antlr Baum
Das Float Literal scheint etwas weiter implementiert zu sein (hier erkennt die Antlr Grammatik dass es sich um ein floatLiteral handelt), scheitert dann allerdings beim Typinferenz Algorithmus.
Beispiel: