mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
ASTGen always builds with the host Swift compiler, without requiring bootstrapping, and is enabled in more places. Move the regex literal parsing logic there so it is enabled in more host environments, and makes use of CMake's Swift support. Enable all of the regex literal tests when ASTGen is built, to ensure everything is working. Remove the "AST" and "Parse" Swift modules from SwiftCompilerSources, because they are no longer needed.
30 lines
1.3 KiB
Swift
30 lines
1.3 KiB
Swift
// RUN: %target-typecheck-verify-swift -enable-bare-slash-regex -target %target-cpu-apple-macosx12.0
|
||
|
||
// REQUIRES: swift_swift_parser
|
||
// REQUIRES: OS=macosx
|
||
|
||
import RegexBuilder
|
||
|
||
// rdar://97533700 – Make sure we can emit an availability diagnostic here.
|
||
|
||
let _ = Regex { // expected-error {{'Regex' is only available in macOS 13.0 or newer}}
|
||
// expected-error@-1 {{'init(_:)' is only available in macOS 13.0 or newer}}
|
||
// expected-note@-2 2{{add 'if #available' version check}}
|
||
|
||
Capture {} // expected-error {{'Capture' is only available in macOS 13.0 or newer}}
|
||
// expected-error@-1 {{'init(_:)' is only available in macOS 13.0 or newer}}
|
||
// expected-note@-2 2{{add 'if #available' version check}}
|
||
}
|
||
|
||
let _ = Regex { // expected-error {{'Regex' is only available in macOS 13.0 or newer}}
|
||
// expected-error@-1 {{'init(_:)' is only available in macOS 13.0 or newer}}
|
||
// expected-error@-2 {{'buildPartialBlock(accumulated:next:)' is only available in macOS 13.0 or newer}}
|
||
// expected-note@-3 3{{add 'if #available' version check}}
|
||
|
||
/abc/ // expected-error {{'Regex' is only available in macOS 13.0 or newer}}
|
||
// expected-note@-1 {{add 'if #available' version check}}
|
||
|
||
/def/ // expected-error {{'Regex' is only available in macOS 13.0 or newer}}
|
||
// expected-note@-1 {{add 'if #available' version check}}
|
||
}
|