wabt interpreter tests

This commit is contained in:
Svyatoslav Nikolsky
2017-04-27 14:22:02 +03:00
parent 7beeb0587a
commit af2c6a3e08
5 changed files with 622 additions and 176 deletions

View File

@ -3,6 +3,7 @@ use interpreter::Error;
use interpreter::value::{RuntimeValue, TryInto};
/// Stack with limit.
#[derive(Debug)]
pub struct StackWithLimit<T> where T: Clone {
/// Stack values.
values: VecDeque<T>,