mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 20:34:44 +00:00
Add Runnable::initialize
This commit is contained in:
parent
64dcc17399
commit
7bcc766500
11 changed files with 80 additions and 2 deletions
|
@ -33,6 +33,9 @@ impl Runnable for ASTBuilder {
|
|||
#[inline]
|
||||
fn finish(&mut self) {}
|
||||
|
||||
#[inline]
|
||||
fn initialize(&mut self) {}
|
||||
|
||||
#[inline]
|
||||
fn clear(&mut self) {}
|
||||
|
||||
|
|
|
@ -35,6 +35,9 @@ impl Runnable for LexerRunner {
|
|||
#[inline]
|
||||
fn finish(&mut self) {}
|
||||
|
||||
#[inline]
|
||||
fn initialize(&mut self) {}
|
||||
|
||||
#[inline]
|
||||
fn clear(&mut self) {}
|
||||
|
||||
|
|
|
@ -187,6 +187,9 @@ impl Runnable for ParserRunner {
|
|||
#[inline]
|
||||
fn finish(&mut self) {}
|
||||
|
||||
#[inline]
|
||||
fn initialize(&mut self) {}
|
||||
|
||||
#[inline]
|
||||
fn clear(&mut self) {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue