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