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