use crate::{Function, Result};
use ristretto_classfile::{ClassFile, Method};
#[derive(Debug)]
pub struct Compiler {}
impl Compiler {
pub fn new() -> Result<Self> {
Ok(Compiler {})
}
pub fn compile(&self, _class_file: &ClassFile, _method: &Method) -> Result<Function> {
Err(crate::Error::InternalError("Not implemented".to_string()))
}
}