replace lazy_static with once_cell

This commit is contained in:
mposmta 2020-04-09 14:30:16 +02:00 committed by marin
parent c3d5778aae
commit a0a481697b
3 changed files with 9 additions and 13 deletions

View file

@ -1,13 +1,11 @@
use lazy_static::lazy_static;
use once_cell::sync::Lazy;
use pest::prec_climber::{Operator, Assoc, PrecClimber};
lazy_static! {
pub static ref PREC_CLIMBER: PrecClimber<Rule> = {
use Assoc::*;
use Rule::*;
pest::prec_climber::PrecClimber::new(vec![Operator::new(or, Left), Operator::new(and, Left)])
};
}
pub static PREC_CLIMBER: Lazy<PrecClimber<Rule>> = Lazy::new(|| {
use Assoc::*;
use Rule::*;
pest::prec_climber::PrecClimber::new(vec![Operator::new(or, Left), Operator::new(and, Left)])
});
#[derive(Parser)]
#[grammar = "filters/parser/grammar.pest"]