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)

Tuple Fields

0: 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: Option<JsWord>
has_escape: bool

Colon

‘:’

ColonColon

‘::’

BinOp(BinOpToken)

Tuple Fields

AssignOp(AssignOpToken)

Tuple Fields

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)

Tuple Fields

0: JsWord
1: JsWord

Regexp literal.

Num(f64)

Tuple Fields

0: f64

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

BigInt(BigIntValue)

Tuple Fields

JSXName

Fields

name: JsWord

JSXText

Fields

raw: JsWord

JSXTagStart

JSXTagEnd

Shebang(JsWord)

Tuple Fields

0: JsWord

Error(Error)

Tuple Fields

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)

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