pub enum Token {
Show 36 variants Word(Word), Arrow, Hash, At, Dot, DotDotDot, Bang, LParen, RParen, LBracket, RBracket, LBrace, RBrace, Semi, Comma, BackQuote, Template { raw: JsWord, cooked: Result<JsWord, Error>, has_escape: bool, }, Colon, ColonColon, BinOp(BinOpToken), AssignOp(AssignOpToken), DollarLBrace, QuestionMark, PlusPlus, MinusMinus, Tilde, Str { value: JsWord, has_escape: bool, }, Regex(JsWordJsWord), Num(f64), BigInt(BigIntValue), JSXName { name: JsWord, }, JSXText { raw: JsWord, }, JSXTagStart, JSXTagEnd, Shebang(JsWord), Error(Error),
}

Variants

Word(Word)

Identifier, “null”, “true”, “false”.

Contains null and ``

Arrow

‘=>’

Hash

‘#’

At

‘@’

Dot

‘.’

DotDotDot

‘…’

Bang

‘!’

LParen

‘(’

RParen

‘)’

LBracket

[

RBracket

‘]’

LBrace

‘{’

RBrace

‘}’

Semi

‘;’

Comma

‘,’

BackQuote

‘`’

Template

Fields

raw: JsWord
cooked: Result<JsWord, Error>
has_escape: bool

Colon

‘:’

ColonColon

‘::’

BinOp(BinOpToken)

AssignOp(AssignOpToken)

DollarLBrace

‘${’

QuestionMark

‘?’

PlusPlus

++

MinusMinus

--

Tilde

~

Str

Fields

value: JsWord
has_escape: bool

This field exists because ‘use\x20strict’ is not an use strict directive.

String literal. Span of this token contains quote.

Regex(JsWordJsWord)

Regexp literal.

Num(f64)

TODO: Make Num as enum and separate decimal, binary, ..etc

BigInt(BigIntValue)

JSXName

Fields

name: JsWord

JSXText

Fields

raw: JsWord

JSXTagStart

JSXTagEnd

Shebang(JsWord)

Error(Error)

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

This method is called only in the case of parsing failure.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more