MobileNativeFoundation / XCLogParser

Tool to parse Xcode and xcodebuild logs stored in the xcactivitylog format
Apache License 2.0
1.73k stars 120 forks source link

Add swiftc type check times #75

Closed ecamacho closed 4 years ago

ecamacho commented 4 years ago

Parses the swiftc type check times generated when the compiler option -Xfrontend -debug-time-expression-type-checking is used. Shows the number of occurrences of each swift function compilation and swift type check. With that, you can calculate the cumulative time it actually took swiftc to compile your expression, as stated in this blog post.

Updates the HTML reporter to show the new data:

image