pub type PascalToken = Token<PascalSyntaxKind>;Aliased Type§
pub struct PascalToken {
pub kind: PascalSyntaxKind,
pub span: Range<usize>,
}Fields§
§kind: PascalSyntaxKindThe kind/category of this kind (e.g., keyword, identifier, number)
span: Range<usize>The byte range in the source text that this kind occupies