mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
9 lines
197 B
Rust
9 lines
197 B
Rust
use oxc_ast::ast::Decorator;
|
|
use rustc_hash::FxHashSet;
|
|
|
|
#[derive(Default)]
|
|
pub struct ParserState<'a> {
|
|
pub not_parenthesized_arrow: FxHashSet<u32>,
|
|
|
|
pub decorators: Vec<Decorator<'a>>,
|
|
}
|