pub type ActionScriptToken = Token<ActionScriptTokenType>;Expand description
ActionScript 语言的标记
Aliased Type§
pub struct ActionScriptToken {
pub kind: ActionScriptTokenType,
pub span: Range<usize>,
}Fields§
§kind: ActionScriptTokenTypeThe kind/category of this kind (e.g., keyword, identifier, number)
span: Range<usize>The byte range in the source text that this kind occupies