mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 15:45:25 +00:00
LibWeb: Remove TokenStream::position() and ::rewind_to_position()
This commit is contained in:
committed by
Andreas Kling
parent
2b3185955e
commit
56e8e0daa1
@@ -114,13 +114,6 @@ void TokenStream<T>::reconsume_current_input_token()
|
||||
--m_iterator_offset;
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
void TokenStream<T>::rewind_to_position(int position)
|
||||
{
|
||||
VERIFY(position <= m_iterator_offset);
|
||||
m_iterator_offset = position;
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
void TokenStream<T>::skip_whitespace()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user