as3_parser 1.0.25

ActionScript 3 parser
Documentation
use num_derive::FromPrimitive;
use num_traits::FromPrimitive;

#[derive(FromPrimitive)]
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
#[repr(u32)]
pub enum OperatorPrecedence {
    Postfix = 16,
    Unary = 15,
    Exponentiation = 14,
    Multiplicative = 13,
    Additive = 12,
    Shift = 11,
    Relational = 10,
    Equality = 9,
    BitwiseAnd = 8,
    BitwiseXor = 7,
    BitwiseOr = 6,
    LogicalAnd = 5,
    LogicalXor = 4,
    /// Includes logical OR and nullish coalescing (`??`).
    LogicalOrAndOther = 3,
    /// Includes assignment operators, conditional operator, function expression and `yield` operator.
    AssignmentAndOther = 2,
    List = 1,
}

impl OperatorPrecedence {
    pub fn add(&self, value: u32) -> Option<Self> {
        FromPrimitive::from_u32(*self as u32 + value)
    }

    pub fn value_of(&self) -> u32 {
        *self as u32
    }

    pub fn includes(&self, other: &Self) -> bool {
        *self <= *other
    }
}

impl TryFrom<u32> for OperatorPrecedence {
    type Error = ();
    fn try_from(value: u32) -> Result<Self, Self::Error> {
        if let Some(v) = FromPrimitive::from_u32(value as u32) { Ok(v) } else { Err(()) }
    }
}

#[derive(FromPrimitive)]
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
#[repr(u32)]
pub enum CssOperatorPrecedence {
    Unary = 3,
    MultiValue = 2,
    Array = 1,
}

impl CssOperatorPrecedence {
    pub fn add(&self, value: u32) -> Option<Self> {
        FromPrimitive::from_u32(*self as u32 + value)
    }

    pub fn value_of(&self) -> u32 {
        *self as u32
    }

    pub fn includes(&self, other: &Self) -> bool {
        *self <= *other
    }
}

impl TryFrom<u32> for CssOperatorPrecedence {
    type Error = ();
    fn try_from(value: u32) -> Result<Self, Self::Error> {
        if let Some(v) = FromPrimitive::from_u32(value as u32) { Ok(v) } else { Err(()) }
    }
}