Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1704,9 +1704,10 @@ impl<'src, 'parse, I: Input<'src>, E: ParserExtra<'src, I>> InputRef<'src, 'pars
let _ = self.next_inner();
}

/// Get full slice of raw input.
#[cfg_attr(not(feature = "regex"), allow(dead_code))]
#[inline]
pub(crate) fn full_slice(&mut self) -> I::Slice
pub fn full_slice(&mut self) -> I::Slice
where
I: SliceInput<'src>,
{
Expand Down