Enum swc_ecma_parser::token::Token[][src]

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: Option<JsWord>, 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 ``

Tuple Fields of Word

0: Word
Arrow

‘=>’

Hash

‘#’

At

‘@’

Dot

‘.’

DotDotDot

‘…’

Bang

‘!’

LParen

‘(’

RParen

‘)’

LBracket

[

RBracket

‘]’

LBrace

‘{’

RBrace

‘}’

Semi

‘;’

Comma

‘,’

BackQuote

‘`’

Template

Fields of Template

raw: JsWordcooked: Option<JsWord>has_escape: bool
Colon

‘:’

ColonColon

‘::’

BinOp(BinOpToken)

Tuple Fields of BinOp

0: BinOpToken
AssignOp(AssignOpToken)

Tuple Fields of AssignOp

0: AssignOpToken
DollarLBrace

‘${’

QuestionMark

‘?’

PlusPlus

++

MinusMinus

--

Tilde

~

Str

String literal. Span of this token contains quote.

Fields of Str

value: JsWordhas_escape: bool

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

Regex(JsWordJsWord)

Regexp literal.

Tuple Fields of Regex

0: JsWord1: JsWord
Num(f64)

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

Tuple Fields of Num

0: f64
BigInt(BigIntValue)

Tuple Fields of BigInt

0: BigIntValue
JSXName

Fields of JSXName

name: JsWord
JSXText

Fields of JSXText

raw: JsWord
JSXTagStart
JSXTagEnd
Shebang(JsWord)

Tuple Fields of Shebang

0: JsWord
Error(Error)

Tuple Fields of Error

0: 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

Performs the conversion.

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

Performs the conversion.

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)

recently added

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