Working up until registerNatives()

This commit is contained in:
vegowotenks 2024-09-06 23:51:35 +02:00
parent 5bc0d813e5
commit 3282694b32
4 changed files with 268 additions and 58 deletions

View file

@ -202,7 +202,7 @@ impl JavaClassFile {
return None;
}
fn pool_entry(&self, index: u16) -> Result<&ConstantPoolInfo, Error> {
pub fn pool_entry(&self, index: u16) -> Result<&ConstantPoolInfo, Error> {
return pool_entry(&self.constant_pool, index);
}