1use crate::kind::SwiftSyntaxKind; 2use oak_core::Language; 3 4#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] 5pub struct SwiftLanguage; 6 7impl Language for SwiftLanguage { 8 type SyntaxKind = SwiftSyntaxKind; 9 type TypedRoot = (); 10}