1 2 3 4 5
use crate::bytecode::{ self, OPTCODE }; pub fn parse_bytecode(bytecode_json: String) -> Vec<OPTCODE>{ serde_json::from_str(&bytecode_json).unwrap() }