We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
IntegerLiteralExprSyntax.Radix
CaseIterable
1 parent 644f61a commit 3e6f03eCopy full SHA for 3e6f03e
Release Notes/511.md
@@ -19,6 +19,9 @@
19
- `SyntaxKind` removed conformance to `CaseIterable`
20
- Description: `SyntaxKind` no longer conforms to `CaseIterable` since there is no good use case to iterate over all syntax kinds.
21
- Pull request:
22
+- `IntegerLiteralExprSyntax.Radix` removed conformance to `CaseIterable`
23
+ - Description: `IntegerLiteralExprSyntax.Radix` no longer conforms to `CaseIterable` since there is no good use case to iterate over all radix kinds.
24
+ - Pull request:
25
26
27
## Template
Sources/SwiftRefactor/IntegerLiteralUtilities.swift
@@ -13,7 +13,7 @@
13
import SwiftSyntax
14
15
extension IntegerLiteralExprSyntax {
16
- public enum Radix: CaseIterable {
+ public enum Radix {
17
case binary
18
case octal
case decimal
0 commit comments