oak_python/language/
mod.rs

1use crate::kind::PythonSyntaxKind;
2use oak_core::Language;
3
4/// Python 语言定义
5#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
6pub struct PythonLanguage;
7
8impl Language for PythonLanguage {
9    type SyntaxKind = PythonSyntaxKind;
10    type TypedRoot = crate::ast::SourceFile;
11}