Instance Method (Default implementation)swift-syntax 600.0.1SwiftSyntax
write(to:)
RawSyntaxNodeProtocol.swift:46This declaration is gated by at least one @_spi attribute.
func write(to target: inout some TextOutputStream)
This declaration is gated by at least one @_spi attribute.
func write(to target: inout some TextOutputStream)
s11SwiftSyntax03RawB12NodeProtocolPAAE5write2toyqd__z_ts16TextOutputStreamRd__lF
What are these?3S0FJ
import SwiftSyntax
A library for working with Swift code.
protocol RawSyntaxNodeProtocol : CustomStringConvertible, Sendable, TextOutputStreamable
All typed raw syntax nodes conform to this protocol. RawXXXSyntax
is a typed wrappeer of RawSyntax
.
protocol TextOutputStream
A type that can be the target of text-streaming operations.
func write<Target>(to target: inout Target) where Target : TextOutputStream
Writes a textual representation of this instance into the given output stream.
var description: String { get }
var hasError: Bool { get }
Whether the tree contained by this layout has any
var isEmpty: Bool { get }
func `as`<Node>(_: Node.Type) -> Node? where Node : RawSyntaxNodeProtocol
Cast to the specified raw syntax type if possible.
func cast<S>(_ syntaxType: S.Type) -> S where S : RawSyntaxNodeProtocol
func `is`<Node>(_: Node.Type) -> Bool where Node : RawSyntaxNodeProtocol
Check if this instance can be cast to the specified syntax type.