触摸打字员
安装
去做
用法
重写单个文件
$ swiftc -frontend -dump-ast sourcefile.swift > sourcefile.swift.ast
$ touchtypist rewrite sourcefile.swift.ast
- let value = 1
+ let value: Int = 1
- [1, 2, 3].map { i in
+ [1, 2, 3].map { (i: Int) -> String in
return i.description
}
重写Xcode项目
使用touchtypist-xcode-wrapper设置用户定义的构建设置SWIFT_EXEC并运行构建。
1