mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-25 12:33:33 +00:00
Double the macro token limit
This commit is contained in:
parent
614e5a2272
commit
19508b474f
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ use crate::{
|
|||
///
|
||||
/// If an invocation produces more tokens than this limit, it will not be stored in the database and
|
||||
/// an error will be emitted.
|
||||
const TOKEN_LIMIT: usize = 262144;
|
||||
const TOKEN_LIMIT: usize = 0x80000;
|
||||
|
||||
#[derive(Debug, Clone, Eq, PartialEq)]
|
||||
pub enum TokenExpander {
|
||||
|
|
Loading…
Reference in a new issue