#![allow(unused_imports, unused_variables, clippy::inline_always)]
use std::cell::Cell;
use oxc_allocator::{Allocator, Dummy};
use crate::number::*;
use crate::operator::*;
impl<'a> Dummy<'a> for NumberBase {
#[inline(always)]
fn dummy(allocator: &'a Allocator) -> Self {
Self::Float
}
}
impl<'a> Dummy<'a> for BigintBase {
#[inline(always)]
fn dummy(allocator: &'a Allocator) -> Self {
Self::Decimal
}
}
impl<'a> Dummy<'a> for AssignmentOperator {
#[inline(always)]
fn dummy(allocator: &'a Allocator) -> Self {
Self::Assign
}
}
impl<'a> Dummy<'a> for BinaryOperator {
#[inline(always)]
fn dummy(allocator: &'a Allocator) -> Self {
Self::Equality
}
}
impl<'a> Dummy<'a> for LogicalOperator {
#[inline(always)]
fn dummy(allocator: &'a Allocator) -> Self {
Self::Or
}
}
impl<'a> Dummy<'a> for UnaryOperator {
#[inline(always)]
fn dummy(allocator: &'a Allocator) -> Self {
Self::UnaryPlus
}
}
impl<'a> Dummy<'a> for UpdateOperator {
#[inline(always)]
fn dummy(allocator: &'a Allocator) -> Self {
Self::Increment
}
}