AnyNode struct AnyNode : Codable, Sendable A type-erasing container for AST nodes. Show on GitHub CodingKeys Undocumented See more Declaration Swift fileprivate enum CodingKeys : String, CodingKey, Sendable Show on GitHub node The wrapped node. Declaration Swift let node: Node Show on GitHub init(_:) Creates a type-erased container that wraps node. Declaration Swift init(_ node: Node) Show on GitHub init(from:) Declaration Swift init(from decoder: Decoder) throws Show on GitHub encode(to:) Declaration Swift func encode(to encoder: Encoder) throws Show on GitHub