aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/default_emitter.rs8
-rw-r--r--src/emitter.rs6
2 files changed, 7 insertions, 7 deletions
diff --git a/src/default_emitter.rs b/src/default_emitter.rs
index 7ef96ec..c5eb081 100644
--- a/src/default_emitter.rs
+++ b/src/default_emitter.rs
@@ -42,14 +42,14 @@ impl<O> Iterator for DefaultEmitter<O> {
}
impl<O: Offset> Emitter<O> for DefaultEmitter<O> {
- fn emit_eof(&mut self) {
- self.flush_current_characters();
- }
-
fn emit_error(&mut self, error: Error, span: Range<O>) {
self.push_error(error, span);
}
+ fn emit_eof(&mut self) {
+ self.flush_current_characters();
+ }
+
fn emit_string(&mut self, s: &str) {
self.current_characters.push_str(s);
}
diff --git a/src/emitter.rs b/src/emitter.rs
index 923da1c..ccc5a60 100644
--- a/src/emitter.rs
+++ b/src/emitter.rs
@@ -24,12 +24,12 @@ use crate::Error;
#[allow(unused_variables)] // workaround for https://github.com/rust-lang/rust/issues/91074
pub trait Emitter<O> {
- /// The state machine has reached the end of the file.
- fn emit_eof(&mut self);
-
/// A (probably recoverable) parsing error has occurred.
fn emit_error(&mut self, error: Error, span: Range<O>);
+ /// The state machine has reached the end of the file.
+ fn emit_eof(&mut self);
+
/// Emit a bunch of plain characters as character tokens.
fn emit_string(&mut self, c: &str);