mirror of
https://github.com/RGBCube/cstree
synced 2025-07-27 09:07:44 +00:00
11 lines
161 B
Rust
11 lines
161 B
Rust
use cstree::Syntax;
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Syntax)]
|
|
#[repr(C)]
|
|
pub enum SyntaxKind {
|
|
A,
|
|
#[static_text("b")]
|
|
B,
|
|
}
|
|
|
|
fn main() {}
|