pub type CSharpToken = Token<CSharpTokenType>;Expand description
Token type for the C# language.
Aliased Type§
pub struct CSharpToken {
pub kind: CSharpTokenType,
pub span: Range<usize>,
}Fields§
§kind: CSharpTokenTypeThe kind/category of this kind (e.g., keyword, identifier, number)
span: Range<usize>The byte range in the source text that this kind occupies