File tree Expand file tree Collapse file tree 3 files changed +73
-70
lines changed Expand file tree Collapse file tree 3 files changed +73
-70
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ add_swift_host_library(SwiftParser
13
13
CollectionNodes+Parsable.swift
14
14
Declarations.swift
15
15
Directives.swift
16
- ExperimentalFeatures.swift
17
16
Expressions.swift
18
17
IncrementalParseTransition.swift
19
18
Lookahead.swift
@@ -39,6 +38,7 @@ add_swift_host_library(SwiftParser
39
38
TriviaParser.swift
40
39
Types.swift
41
40
41
+ generated /ExperimentalFeatures.swift
42
42
generated /IsLexerClassified.swift
43
43
generated /LayoutNodes+Parsable.swift
44
44
generated /Parser+TokenSpecSet.swift
Original file line number Diff line number Diff line change
1
+ //// Automatically generated by generate-swift-syntax
2
+ //// Do not edit directly!
1
3
//===----------------------------------------------------------------------===//
2
4
//
3
5
// This source file is part of the Swift.org open source project
4
6
//
5
- // Copyright (c) 2023 Apple Inc. and the Swift project authors
7
+ // Copyright (c) 2014 - 2023 Apple Inc. and the Swift project authors
6
8
// Licensed under Apache License v2.0 with Runtime Library Exception
7
9
//
8
10
// See https://swift.org/LICENSE.txt for license information
@@ -14,16 +16,17 @@ extension Parser {
14
16
@_spi ( ExperimentalLanguageFeatures)
15
17
public struct ExperimentalFeatures : OptionSet {
16
18
public let rawValue : UInt
19
+
17
20
public init ( rawValue: UInt ) {
18
21
self . rawValue = rawValue
19
22
}
20
23
}
21
24
}
22
25
23
26
extension Parser . ExperimentalFeatures {
24
- /// Whether to enable the parsing of ' reference bindings' .
27
+ /// Whether to enable the parsing of reference bindings.
25
28
public static let referenceBindings = Self ( rawValue: 1 << 0 )
26
-
29
+
27
30
/// Whether to enable the parsing of 'then' statements.
28
31
public static let thenStatements = Self ( rawValue: 1 << 1 )
29
32
}
You can’t perform that action at this time.
0 commit comments