You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think SourceKit in Xcode 14.3 doesn't return a serialized syntax tree anymore. I think you're meant to use the SwiftSyntax library to get that instead.
let file = File(contents: "class A {}")
let result = try SourceKittenFramework.Request.syntaxTree(file: file, byteTree: false).send()
print(result)
apple silicon M2 xcode14.3, "key.serialized_syntax_tree" is not found in result
intel xcode14.1,is ok
The text was updated successfully, but these errors were encountered: