3 lines
53 B
Rust
3 lines
53 B
Rust
|
|
pub trait ASTNode {
|
||
|
|
fn repr_c(&self) -> String;
|
||
|
|
}
|