pub trait ConstantManager {
// Required methods
fn add_constant(&mut self, value: String) -> ConstantIndex;
fn get_constants(&self) -> &Vec<String>;
}pub trait ConstantManager {
// Required methods
fn add_constant(&mut self, value: String) -> ConstantIndex;
fn get_constants(&self) -> &Vec<String>;
}