Structs

Array literal.

{key} or {key = value}

Identifier used as a pattern.

Use when only block statements are allowed.

A boolean literal.

Class expression.

export * from 'mod'

export * as foo from 'src';

Function expression.

Common parts of function and method.

A complete identifier with span.

e.g. import foo from 'mod.js'

e.g. local = foo, imported = None import { foo } from 'mod.js' e.g. local = bar, imported = Some(foo) for import { foo as bar } from 'mod.js'

e.g. import * as foo from 'mod.js'.

Represents a invalid node.

XML-based namespace syntax:

{key: value}

export { foo } from 'mod' export { foo as bar } from 'mod'

A numeric literal.

Object literal.

EsTree RestElement

A string literal.

TypeScript’s own parser uses ExportAssignment for both export default and export =. But for @babel/parser, export default is an ExportDefaultDecl, so a TsExportAssignment is always export =.

typeof operator

Enums

Traits

Functions

Type Definitions

Redeclaration of swc_ecma_utils::Id. Contains the name and scope of the identifier, but only when the tree has been resolved with an swc resolver such as ts_resolver.