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

Expose public steps initializers #67

Closed polac24 closed 4 years ago

polac24 commented 4 years ago

Struct memberwise initializers are by default internal. Introducing explicit public initailizers to use outside of XCLogParser.

Default Memberwise Initializers for Structure Types As with the default initializer above, if you want a public structure type to be initializable with a memberwise initializer when used in another module, you must provide a public memberwise initializer yourself as part of the type’s definition.

It exposes also ActionOptions properties, as requested in #63