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