use rustc_hash::{FxHashMap, FxHashSet}; use oxc_ast::ast::{AssignmentExpression, Decorator}; #[derive(Default)] pub struct ParserState<'a> { pub not_parenthesized_arrow: FxHashSet, pub decorators: Vec>, /// Temporary storage for `CoverInitializedName` `({ foo = bar })`. /// Keyed by `ObjectProperty`'s span.start. pub cover_initialized_name: FxHashMap>, }