rolldown_ecmascript 1.1.5

ECMAScript AST and parsing utilities for Rolldown
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod constants;
mod ecma_ast;
mod ecma_compiler;

pub use crate::{
  constants::{
    CJS_EXPORTS_REF, CJS_EXPORTS_REF_STR, CJS_MODULE_REF, CJS_MODULE_REF_STR, CJS_REQUIRE_REF,
    CJS_REQUIRE_REF_STR, CJS_ROLLDOWN_EXPORTS_REF, CJS_ROLLDOWN_EXPORTS_REF_IDENT,
    CJS_ROLLDOWN_MODULE_REF, CJS_ROLLDOWN_MODULE_REF_IDENT,
  },
  ecma_ast::{
    EcmaAst, ToSourceString, program_cell::WithMutFields, semantic_builder_for_transform,
  },
  ecma_compiler::{EcmaCompiler, PrintCommentsOptions, PrintOptions},
};