Maxwell
Maxwell
`clang_getCanonicalCursor`?
Yeah, I might throw that in.
I'm stuck. :/ I can't figure out how to compare them to see if this cursor is pointing to the canonical cursor.
This doesn't work. Everything is a canonicalCursor (or not). https://github.com/jspahrsummers/documentalist/commit/f781bb2d4a8b0da32082211b682ccc4c372b562c :stuck_out_tongue_closed_eyes: (with `FFI.isCanonical cxCursor == 0` or `FFI.isCanonical cxCursor /= 0`).
Should we fold them and take the one with the most decls?…
'clang_getCursorDefinition' looks like it will do it! I'm going to try it tomorrow.
I can't get super classes out in `Class $ super objcClassRef ++ super objcProtocolRef ++ super firstRef`. They are all `(Class [])`. Did you have any luck?
@adinapoli any success on implementing SNS? Otherwise, I will give it a go.
I vote it should return all characters and not filter out non-printable characters.
``` swift import Foundation protocol TypeEquality { typealias From typealias To func apply(a: From) -> To } struct Refl : TypeEquality { typealias From = X typealias To = X...