mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Currently the Swift driver stops invoking frontend commands as soon as one of them reports an error. Add a flag to control this behavior, so that users can choose whether to see all the errors at once or bail out early.
7 lines
69 B
Swift
7 lines
69 B
Swift
struct Foo {
|
|
let bar: Int
|
|
init() {
|
|
self.bar = self.bar
|
|
}
|
|
}
|