diff options
author | Martin Fischer <martin@push-f.com> | 2023-09-15 08:15:29 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-28 10:36:08 +0200 |
commit | e0434737b20b32a8d7238a134c3662fa9075eb6d (patch) | |
tree | 8fbfc1fa768fead46a425a1c51970338517ed695 /src/emitter.rs | |
parent | d913e6e91e43241b0105afbbad7db5c5bcda0255 (diff) |
feat: add offset to Trace::EndOfFile
Diffstat (limited to 'src/emitter.rs')
-rw-r--r-- | src/emitter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emitter.rs b/src/emitter.rs index d1e1dfe..264d2f1 100644 --- a/src/emitter.rs +++ b/src/emitter.rs @@ -31,7 +31,7 @@ pub trait Emitter<O> { fn emit_char(&mut self, c: char); /// The state machine has reached the end of the file. - fn emit_eof(&mut self); + fn emit_eof(&mut self, offset: O); /// Set the _current token_ to a start tag. fn init_start_tag(&mut self, tag_offset: O, name_offset: O); |