diff options
Diffstat (limited to 'src/emitter.rs')
-rw-r--r-- | src/emitter.rs | 6 |
1 files changed, 3 insertions, 3 deletions
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); |