rusty-javac 0.2.3

A Java compiler written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub use rust_asm::constant_pool;

pub struct ConstantPool;

impl ConstantPool {
    pub fn new() -> Self {
        Self
    }
}

impl Default for ConstantPool {
    fn default() -> Self {
        Self::new()
    }
}