aboutsummaryrefslogtreecommitdiff
path: root/src/emitter.rs
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2023-08-29 12:13:53 +0200
committerMartin Fischer <martin@push-f.com>2023-09-03 23:00:05 +0200
commitc38810192fbf11007f53bcccd48072e099a4191a (patch)
tree796f86fa5383fdf1d84823ac5d746603fa7c2347 /src/emitter.rs
parentd45e09a3157c71e3c95bf618a2b181f322c87a5d (diff)
break!: make Emitter::emit_error take span
Diffstat (limited to 'src/emitter.rs')
-rw-r--r--src/emitter.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emitter.rs b/src/emitter.rs
index e56ddd5..a014025 100644
--- a/src/emitter.rs
+++ b/src/emitter.rs
@@ -39,7 +39,7 @@ pub trait Emitter<O> {
fn emit_eof(&mut self);
/// A (probably recoverable) parsing error has occurred.
- fn emit_error(&mut self, error: Error, offset: O);
+ fn emit_error(&mut self, error: Error, span: Range<O>);
/// After every state change, the tokenizer calls this method to retrieve a new token that can
/// be returned via the tokenizer's iterator interface.
@@ -261,8 +261,8 @@ impl<O: Offset> Emitter<O> for DefaultEmitter<O> {
self.flush_current_characters();
}
- fn emit_error(&mut self, error: Error, offset: O) {
- self.push_error(error, offset..offset);
+ fn emit_error(&mut self, error: Error, span: Range<O>) {
+ self.push_error(error, span);
}
fn pop_token(&mut self) -> Option<Self::Token> {
@@ -339,7 +339,7 @@ impl<O: Offset> Emitter<O> for DefaultEmitter<O> {
*self_closing = true;
}
Token::EndTag(_) => {
- self.emit_error(Error::EndTagWithTrailingSolidus, offset - 1);
+ self.emit_error(Error::EndTagWithTrailingSolidus, offset - 1..offset - 1);
}
_ => {
debug_assert!(false);