diff options
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 264d2f1..5d2dd4d 100644 --- a/src/emitter.rs +++ b/src/emitter.rs @@ -28,7 +28,7 @@ pub trait Emitter<O> { fn report_error(&mut self, error: Error, span: Range<O>); /// Emits the given character as a character token. - fn emit_char(&mut self, c: char); + fn emit_char(&mut self, char: char, span: Range<O>); /// The state machine has reached the end of the file. fn emit_eof(&mut self, offset: O); |