initial interpreter commit

This commit is contained in:
Svyatoslav Nikolsky
2017-04-21 14:35:12 +03:00
parent afb5b8d523
commit 0eb881f487
14 changed files with 2195 additions and 4 deletions

View File

@ -2,6 +2,7 @@ use std::io;
use super::{Deserialize, Serialize, Error, VarUint7, VarUint32};
/// Internal reference of the exported entry.
#[derive(Clone, Copy)]
pub enum Internal {
/// Function reference.
Function(u32),