Gather type definitions from Swift source code
SwiftTypeReader
You can gather type definitions from Swift source code.
Example
let reader = Reader()
let source = """
struct S {
var a: Int?
}
"""
let result = try reader.read(source: source)
let s = try XCTUnwrap(result.types[safe: 0]?.struct)
XCTAssertEqual(s.name, "S")
XCTAssertEqual(s.storedProperties.count, 1)
let a = try XCTUnwrap(s.storedProperties[safe: 0])
XCTAssertEqual(a.name, "a")
let aType = try XCTUnwrap(a.type?.struct)
XCTAssertEqual(aType.name, "Optional")
XCTAssertEqual(aType.genericsArguments.count, 1)
let aWrappedType = try XCTUnwrap(aType.genericsArguments[safe: 0]?.struct)
XCTAssertEqual(aWrappedType.name, "Int")
Development
Design consideration
This library doesn't distinguish type descriptor and concrete type.
It make implementation simple but ugly especially when generic argument application happens.
Unsupported language features
Class
class C {}
Computed properties
struct S {
var x: Int { 0 }
var y: Int {
get { _y }
set { _y = newValue }
}
var _y: Int = 0
}
Methods
struct S {
func f() {}
}
Variable without type annotation
struct S {
var a = 0
}
Function types
struct S {
var f: () -> Void
}