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.
2 parents ead17c9 + 1f4b878 commit 00dc4d9Copy full SHA for 00dc4d9
Sources/SwiftParser/ExperimentalFeatures.swift
@@ -17,13 +17,13 @@ extension Parser {
17
public init(rawValue: UInt) {
18
self.rawValue = rawValue
19
}
20
-
21
- /// Whether to enable the parsing of 'reference bindings'.
22
- public static let referenceBindings = Self(rawValue: 1 << 0)
23
24
25
26
extension Parser.ExperimentalFeatures {
+ /// Whether to enable the parsing of 'reference bindings'.
+ public static let referenceBindings = Self(rawValue: 1 << 0)
+
27
/// Whether to enable the parsing of 'then' statements.
28
- public static let thenStatements = Self(rawValue: 1 << 0)
+ public static let thenStatements = Self(rawValue: 1 << 1)
29
0 commit comments