cfsp 1.0.1

A JVM Bytecode Manipulation Framework inspired by ASM.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `node` module contains all specification-described data structures from
//! [The JVM Specification - Java SE 20 Edition](https://docs.oracle.com/javase/specs/jvms/se20/jvms20.pdf).
//!
//! Some of the structures are made to be user-friendly, at the same time makes it much more
//! straightforward to use.

pub mod access_flag;
pub mod attribute;
pub mod class;
pub mod constant;
mod error;
pub mod field;
pub mod method;
pub mod opcode;
pub mod signature;