sv_parser_parser/preprocessor/preprocessor.rs
1use crate::*;
2
3// -----------------------------------------------------------------------------
4
5#[tracable_parser]
6#[packrat_parser]
7pub(crate) fn preprocessor_text(s: Span) -> IResult<Span, PreprocessorText> {
8 let (s, a) = many0(source_description)(s)?;
9 Ok((s, PreprocessorText { nodes: (a,) }))
10}