Ternary Operator nicht implementiert #324

Closed
opened 2024-04-19 11:12:12 +00:00 by i21023 · 0 comments
Collaborator

Der Ternary Operator ist aktuell nicht implementiert, ist aber an manchen Stellen sehr hilfreich, um den Code lesbarer und übersichtlicher zu halten. Feature ist nicht dringend.

Beispiel

import java.lang.Boolean;
import java.lang.Integer;

public class Converter{
    boolToInt(a) {
        return a ? 1 : 0;
    }
}
Der Ternary Operator ist aktuell nicht implementiert, ist aber an manchen Stellen sehr hilfreich, um den Code lesbarer und übersichtlicher zu halten. Feature ist nicht dringend. ### Beispiel ```java import java.lang.Boolean; import java.lang.Integer; public class Converter{ boolToInt(a) { return a ? 1 : 0; } } ```
dholle referenced this issue from a commit 2024-04-22 10:17:58 +00:00
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: JavaTX/JavaCompilerCore#324
No description provided.