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.
1 parent 6463dcb commit 8c6cca5Copy full SHA for 8c6cca5
CHANGELOG.md
@@ -5,6 +5,27 @@
5
6
## Swift 6.2
7
8
+* [SE-0419][]:
9
+ Introduced the new `Runtime` module, which contains a public API that can
10
+ generate backtraces, presently supported on macOS and Linux. Capturing a
11
+ backtrace is as simple as
12
+
13
+ ```swift
14
+ import Runtime
15
16
+ func foo() {
17
+ // Without symbols
18
+ let backtrace = try! Backtrace.capture()
19
20
+ print(backtrace)
21
22
+ // With symbol lookup
23
+ let symbolicated = backtrace.symbolicated()!
24
25
+ print(symbolicated)
26
+ }
27
+ ```
28
29
* [SE-0458][]:
30
Introduced an opt-in mode for strict checking of memory safety, which can be
31
enabled with the compiler flag `-strict-memory-safety`. In this mode,
0 commit comments