Auto merge of #90559 - rusticstuff:optimize-bidi-detection, r=davidtwco
Optimize bidi character detection. Should fix most of the performance regression of the bidi character detection (#90514), to be confirmed with a perf run.
This commit is contained in:
commit
5ec7d1dad6
5 changed files with 46 additions and 16 deletions
|
@ -16,6 +16,7 @@
|
|||
#![feature(nll)]
|
||||
#![feature(min_specialization)]
|
||||
#![recursion_limit = "256"]
|
||||
#![feature(slice_internals)]
|
||||
|
||||
#[macro_use]
|
||||
extern crate rustc_macros;
|
||||
|
@ -25,6 +26,7 @@ pub mod util {
|
|||
pub mod comments;
|
||||
pub mod literal;
|
||||
pub mod parser;
|
||||
pub mod unicode;
|
||||
}
|
||||
|
||||
pub mod ast;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue