136 |
// clippy doesn't like '\ ' but i think its ok since it is set to ignore whitespace
|
137 |
#[allow(clippy::invalid_regex)]
|
138 |
pub fn short_cite_re(regex: &str) -> ResolvedRegex {
|
152 |
/// Break up a string into tokens.
|
153 |
#[allow(clippy::invalid_regex)]
|
154 |
pub fn tokenize(input: &str) -> WeldResult<Vec<Token>> {
|
1 |
// TODO Investigate if it's a clippy bug or buggy regex
|
2 |
#![allow(clippy::invalid_regex)]
|
1 |
#![allow(clippy::invalid_regex)]
|
2 |
use crate::{error::Error, Disassembler, DisassemblyResult, FunctionAnalysisState, Result};
|