Re: [swift-users] Compiler switch?

2016-01-05 Thread Jack Lawrence via swift-users
Hi Don, It’s not currently possible to disable any warnings emitted by the Swift compiler. Alternatively, you could run a fix-it pass over all of the code after translation, which automatically accepts all suggested fix-its: swiftc -fixit-all input_file.swift Jack > On Jan 5, 2016, at 7:02 PM,

[swift-users] Compiler switch?

2016-01-05 Thread Don Wills via swift-users
Hello Swift-Users, I am building an automated translator to translate from another programming language to Swift. It's mostly working, but there is one issue that would be hard for the translator to deal with - the issue of 'var' vs. 'let' declarations. Right now the translator always creates