rolldown_ecmascript 1.1.5

ECMAScript AST and parsing utilities for Rolldown
Documentation
use oxc::{
  ast::ast::Program,
  semantic::{Scoping, Semantic, SemanticBuilder},
};

use crate::EcmaAst;

/// Returns a [`SemanticBuilder`] pre-configured for any `Scoping` that will be
/// passed to `Transformer::build_with_scoping`.
///
/// The TS transformer's enum lowering reads each member's constant value via
/// `Scoping::get_enum_member_value`. That table is only populated when the
/// builder has `enum_eval` enabled — without it, member aliases like
/// `Default = Theme.Light` fall through to the buggy reverse-mapping form for
/// string enums (`Foo[Foo["x"] = init] = "x"`), which corrupts the original
/// member's reverse mapping. Callers may chain additional options (e.g.
/// `with_check_syntax_error`, `with_stats`) on top.
pub fn semantic_builder_for_transform<'a>() -> SemanticBuilder<'a> {
  SemanticBuilder::new().with_enum_eval(true)
}

impl EcmaAst {
  pub fn make_semantic<'ast>(program: &'ast Program<'ast>) -> Semantic<'ast> {
    SemanticBuilder::new().build(program).semantic
  }

  pub fn make_scoping(&self) -> Scoping {
    self.program.with_dependent(|_owner, dep| Self::make_semantic(&dep.program).into_scoping())
  }

  pub fn make_symbol_table_and_scope_tree_with_semantic_builder<'a>(
    &'a self,
    semantic_builder: SemanticBuilder<'a>,
  ) -> Scoping {
    self.program.with_dependent::<'a, Scoping>(|_owner, dep| {
      semantic_builder.build(&dep.program).semantic.into_scoping()
    })
  }
}