oak_solidity/language/
mod.rs

1use crate::kind::SoliditySyntaxKind;
2use oak_core::Language;
3
4#[derive(Debug, Clone, Default)]
5pub struct SolidityLanguage {}
6
7impl SolidityLanguage {
8    pub fn new() -> Self {
9        Self {}
10    }
11}
12
13impl Language for SolidityLanguage {
14    type SyntaxKind = SoliditySyntaxKind;
15    type TypedRoot = ();
16}