rhai/src/scope.rs

489 lines
15 KiB
Rust
Raw Normal View History

2020-03-08 12:54:02 +01:00
//! Module that defines the `Scope` type representing a function call-stack scope.
2020-10-28 15:18:44 +01:00
use crate::dynamic::{Dynamic, Variant};
2020-11-09 07:38:33 +01:00
use crate::StaticVec;
2020-03-11 04:03:18 +01:00
2020-11-06 12:22:00 +01:00
use crate::stdlib::{borrow::Cow, boxed::Box, iter, string::String, vec::Vec};
2020-03-03 08:20:20 +01:00
2020-03-25 04:27:18 +01:00
/// Type of an entry in the Scope.
2020-03-13 11:12:41 +01:00
#[derive(Debug, Eq, PartialEq, Hash, Copy, Clone)]
2020-03-25 04:27:18 +01:00
pub enum EntryType {
/// Normal value.
2020-03-13 11:12:41 +01:00
Normal,
/// Immutable constant value.
2020-03-13 11:12:41 +01:00
Constant,
}
2020-10-09 07:23:44 +02:00
impl EntryType {
/// Is this entry constant?
#[inline(always)]
pub fn is_constant(&self) -> bool {
match self {
Self::Normal => false,
Self::Constant => true,
}
}
}
2020-05-15 15:40:54 +02:00
/// Type containing information about the current scope.
/// Useful for keeping state between `Engine` evaluation runs.
2020-03-03 08:20:20 +01:00
///
2020-10-27 04:30:38 +01:00
/// # Thread Safety
///
/// Currently, `Scope` is neither `Send` nor `Sync`. Turn on the `sync` feature to make it `Send + Sync`.
///
2020-03-04 15:00:01 +01:00
/// # Example
///
2020-03-19 06:52:10 +01:00
/// ```
/// # fn main() -> Result<(), Box<rhai::EvalAltResult>> {
2020-03-03 08:20:20 +01:00
/// use rhai::{Engine, Scope};
///
/// let engine = Engine::new();
2020-03-03 08:20:20 +01:00
/// let mut my_scope = Scope::new();
///
2020-04-05 17:43:40 +02:00
/// my_scope.push("z", 40_i64);
2020-03-09 14:09:53 +01:00
///
2020-04-05 17:43:40 +02:00
/// engine.eval_with_scope::<()>(&mut my_scope, "let x = z + 1; z = 0;")?;
///
/// assert_eq!(engine.eval_with_scope::<i64>(&mut my_scope, "x + 1")?, 42);
///
/// assert_eq!(my_scope.get_value::<i64>("x").unwrap(), 41);
/// assert_eq!(my_scope.get_value::<i64>("z").unwrap(), 0);
2020-03-09 14:09:53 +01:00
/// # Ok(())
/// # }
2020-03-03 08:20:20 +01:00
/// ```
///
2020-03-25 04:27:18 +01:00
/// When searching for entries, newly-added entries are found before similarly-named but older entries,
/// allowing for automatic _shadowing_.
2020-11-01 15:46:46 +01:00
//
// # Implementation Notes
//
// `Scope` is implemented as three `Vec`'s of exactly the same length. Variables data (name, type, etc.)
// is manually split into three equal-length arrays. That's because variable names take up the most space,
// with `Cow<str>` being four words long, but in the vast majority of cases the name is NOT used to look up
// a variable's value. Variable lookup is usually via direct index, by-passing the name altogether.
//
// Since `Dynamic` is reasonably small, packing it tightly improves cache locality when variables are accessed.
// The variable type is packed separately into another array because it is even smaller.
2020-11-15 06:49:54 +01:00
#[derive(Debug, Clone)]
2020-11-01 15:46:46 +01:00
pub struct Scope<'a> {
/// Current value of the entry.
values: Vec<Dynamic>,
2020-11-02 16:54:19 +01:00
/// Type of the entry.
types: Vec<EntryType>,
2020-11-09 07:38:33 +01:00
/// (Name, aliases) of the entry. The list of aliases is Boxed because it occurs rarely.
names: Vec<(Cow<'a, str>, Box<StaticVec<String>>)>,
2020-11-01 15:46:46 +01:00
}
2020-03-03 08:20:20 +01:00
2020-11-15 06:49:54 +01:00
impl Default for Scope<'_> {
fn default() -> Self {
Self {
values: Vec::with_capacity(16),
types: Vec::with_capacity(16),
names: Vec::with_capacity(16),
}
}
}
2020-03-07 03:15:42 +01:00
impl<'a> Scope<'a> {
2020-03-03 08:20:20 +01:00
/// Create a new Scope.
2020-04-05 17:43:40 +02:00
///
2020-10-27 04:30:38 +01:00
/// # Example
2020-04-05 17:43:40 +02:00
///
/// ```
/// use rhai::Scope;
///
/// let mut my_scope = Scope::new();
///
/// my_scope.push("x", 42_i64);
/// assert_eq!(my_scope.get_value::<i64>("x").unwrap(), 42);
/// ```
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-03-03 08:20:20 +01:00
pub fn new() -> Self {
2020-05-05 09:00:10 +02:00
Default::default()
2020-03-03 08:20:20 +01:00
}
/// Empty the Scope.
2020-04-05 17:43:40 +02:00
///
2020-10-27 04:30:38 +01:00
/// # Example
2020-04-05 17:43:40 +02:00
///
/// ```
/// use rhai::Scope;
///
/// let mut my_scope = Scope::new();
///
/// my_scope.push("x", 42_i64);
/// assert!(my_scope.contains("x"));
/// assert_eq!(my_scope.len(), 1);
/// assert!(!my_scope.is_empty());
///
/// my_scope.clear();
/// assert!(!my_scope.contains("x"));
/// assert_eq!(my_scope.len(), 0);
/// assert!(my_scope.is_empty());
/// ```
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-07-12 05:46:53 +02:00
pub fn clear(&mut self) -> &mut Self {
2020-11-01 15:46:46 +01:00
self.names.clear();
self.types.clear();
self.values.clear();
2020-07-12 05:46:53 +02:00
self
2020-03-03 08:20:20 +01:00
}
2020-03-25 04:27:18 +01:00
/// Get the number of entries inside the Scope.
2020-04-05 17:43:40 +02:00
///
2020-10-27 04:30:38 +01:00
/// # Example
2020-04-05 17:43:40 +02:00
///
/// ```
/// use rhai::Scope;
///
/// let mut my_scope = Scope::new();
/// assert_eq!(my_scope.len(), 0);
///
/// my_scope.push("x", 42_i64);
/// assert_eq!(my_scope.len(), 1);
/// ```
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-03-03 08:20:20 +01:00
pub fn len(&self) -> usize {
2020-11-01 15:46:46 +01:00
self.values.len()
2020-03-03 08:20:20 +01:00
}
2020-03-24 09:57:35 +01:00
/// Is the Scope empty?
2020-04-05 17:43:40 +02:00
///
2020-10-27 04:30:38 +01:00
/// # Example
2020-04-05 17:43:40 +02:00
///
/// ```
/// use rhai::Scope;
///
/// let mut my_scope = Scope::new();
/// assert!(my_scope.is_empty());
///
/// my_scope.push("x", 42_i64);
/// assert!(!my_scope.is_empty());
/// ```
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-03-24 09:57:35 +01:00
pub fn is_empty(&self) -> bool {
2020-11-01 15:46:46 +01:00
self.values.len() == 0
2020-03-24 09:57:35 +01:00
}
2020-03-25 04:27:18 +01:00
/// Add (push) a new entry to the Scope.
2020-04-05 17:43:40 +02:00
///
2020-10-27 04:30:38 +01:00
/// # Example
2020-04-05 17:43:40 +02:00
///
/// ```
/// use rhai::Scope;
///
/// let mut my_scope = Scope::new();
///
/// my_scope.push("x", 42_i64);
/// assert_eq!(my_scope.get_value::<i64>("x").unwrap(), 42);
/// ```
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-11-03 14:50:14 +01:00
pub fn push(
2020-07-12 05:46:53 +02:00
&mut self,
2020-11-03 14:50:14 +01:00
name: impl Into<Cow<'a, str>>,
value: impl Variant + Clone,
2020-07-12 05:46:53 +02:00
) -> &mut Self {
2020-11-01 15:46:46 +01:00
self.push_dynamic_value(name, EntryType::Normal, Dynamic::from(value))
2020-03-25 04:27:18 +01:00
}
/// Add (push) a new `Dynamic` entry to the Scope.
2020-04-05 17:43:40 +02:00
///
2020-10-27 04:30:38 +01:00
/// # Example
2020-04-05 17:43:40 +02:00
///
/// ```
2020-04-12 17:00:06 +02:00
/// use rhai::{Dynamic, Scope};
2020-04-05 17:43:40 +02:00
///
/// let mut my_scope = Scope::new();
///
2020-04-12 17:00:06 +02:00
/// my_scope.push_dynamic("x", Dynamic::from(42_i64));
2020-04-05 17:43:40 +02:00
/// assert_eq!(my_scope.get_value::<i64>("x").unwrap(), 42);
/// ```
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-11-03 14:50:14 +01:00
pub fn push_dynamic(&mut self, name: impl Into<Cow<'a, str>>, value: Dynamic) -> &mut Self {
2020-11-01 15:46:46 +01:00
self.push_dynamic_value(name, EntryType::Normal, value)
2020-03-03 08:20:20 +01:00
}
2020-03-13 11:12:41 +01:00
/// Add (push) a new constant to the Scope.
///
/// Constants are immutable and cannot be assigned to. Their values never change.
/// Constants propagation is a technique used to optimize an AST.
2020-04-05 17:43:40 +02:00
///
/// However, in order to be used for optimization, constants must be in one of the recognized types:
/// `INT` (default to `i64`, `i32` if `only_i32`), `f64`, `String`, `char` and `bool`.
2020-04-05 17:43:40 +02:00
///
2020-10-27 04:30:38 +01:00
/// # Example
2020-04-05 17:43:40 +02:00
///
/// ```
/// use rhai::Scope;
///
/// let mut my_scope = Scope::new();
///
/// my_scope.push_constant("x", 42_i64);
/// assert_eq!(my_scope.get_value::<i64>("x").unwrap(), 42);
/// ```
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-11-03 14:50:14 +01:00
pub fn push_constant(
2020-07-12 05:46:53 +02:00
&mut self,
2020-11-03 14:50:14 +01:00
name: impl Into<Cow<'a, str>>,
value: impl Variant + Clone,
2020-07-12 05:46:53 +02:00
) -> &mut Self {
2020-11-01 15:46:46 +01:00
self.push_dynamic_value(name, EntryType::Constant, Dynamic::from(value))
2020-03-25 04:27:18 +01:00
}
/// Add (push) a new constant with a `Dynamic` value to the Scope.
///
/// Constants are immutable and cannot be assigned to. Their values never change.
/// Constants propagation is a technique used to optimize an AST.
2020-04-05 17:43:40 +02:00
///
2020-03-25 04:27:18 +01:00
/// However, in order to be used for optimization, the `Dynamic` value must be in one of the
/// recognized types:
/// `INT` (default to `i64`, `i32` if `only_i32`), `f64`, `String`, `char` and `bool`.
2020-04-05 17:43:40 +02:00
///
2020-10-27 04:30:38 +01:00
/// # Example
2020-04-05 17:43:40 +02:00
///
/// ```
2020-04-12 17:00:06 +02:00
/// use rhai::{Dynamic, Scope};
2020-04-05 17:43:40 +02:00
///
/// let mut my_scope = Scope::new();
///
2020-04-12 17:00:06 +02:00
/// my_scope.push_constant_dynamic("x", Dynamic::from(42_i64));
2020-04-05 17:43:40 +02:00
/// assert_eq!(my_scope.get_value::<i64>("x").unwrap(), 42);
/// ```
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-11-03 14:50:14 +01:00
pub fn push_constant_dynamic(
2020-07-12 05:46:53 +02:00
&mut self,
2020-11-03 14:50:14 +01:00
name: impl Into<Cow<'a, str>>,
2020-07-12 05:46:53 +02:00
value: Dynamic,
) -> &mut Self {
2020-11-01 15:46:46 +01:00
self.push_dynamic_value(name, EntryType::Constant, value)
2020-03-13 11:12:41 +01:00
}
2020-03-25 04:27:18 +01:00
/// Add (push) a new entry with a `Dynamic` value to the Scope.
2020-10-08 16:25:50 +02:00
#[inline]
2020-11-03 14:50:14 +01:00
pub(crate) fn push_dynamic_value(
2020-03-13 11:12:41 +01:00
&mut self,
2020-11-03 14:50:14 +01:00
name: impl Into<Cow<'a, str>>,
2020-03-25 04:27:18 +01:00
entry_type: EntryType,
2020-03-13 11:12:41 +01:00
value: Dynamic,
2020-07-12 05:46:53 +02:00
) -> &mut Self {
2020-11-09 07:38:33 +01:00
self.names.push((name.into(), Box::new(Default::default())));
2020-11-01 15:46:46 +01:00
self.types.push(entry_type);
self.values.push(value.into());
2020-07-12 05:46:53 +02:00
self
2020-03-03 08:20:20 +01:00
}
/// Truncate (rewind) the Scope to a previous size.
2020-04-05 17:43:40 +02:00
///
2020-10-27 04:30:38 +01:00
/// # Example
2020-04-05 17:43:40 +02:00
///
/// ```
/// use rhai::Scope;
///
/// let mut my_scope = Scope::new();
///
/// my_scope.push("x", 42_i64);
/// my_scope.push("y", 123_i64);
/// assert!(my_scope.contains("x"));
/// assert!(my_scope.contains("y"));
/// assert_eq!(my_scope.len(), 2);
///
/// my_scope.rewind(1);
/// assert!(my_scope.contains("x"));
/// assert!(!my_scope.contains("y"));
/// assert_eq!(my_scope.len(), 1);
///
/// my_scope.rewind(0);
/// assert!(!my_scope.contains("x"));
/// assert!(!my_scope.contains("y"));
/// assert_eq!(my_scope.len(), 0);
/// assert!(my_scope.is_empty());
/// ```
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-07-12 05:46:53 +02:00
pub fn rewind(&mut self, size: usize) -> &mut Self {
2020-11-01 15:46:46 +01:00
self.names.truncate(size);
self.types.truncate(size);
self.values.truncate(size);
2020-07-12 05:46:53 +02:00
self
2020-03-03 08:20:20 +01:00
}
2020-03-25 04:27:18 +01:00
/// Does the scope contain the entry?
2020-04-05 17:43:40 +02:00
///
2020-10-27 04:30:38 +01:00
/// # Example
2020-04-05 17:43:40 +02:00
///
/// ```
/// use rhai::Scope;
///
/// let mut my_scope = Scope::new();
///
/// my_scope.push("x", 42_i64);
/// assert!(my_scope.contains("x"));
/// assert!(!my_scope.contains("y"));
/// ```
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-04-05 17:43:40 +02:00
pub fn contains(&self, name: &str) -> bool {
2020-11-01 15:46:46 +01:00
self.names
2020-03-19 13:55:49 +01:00
.iter()
.rev() // Always search a Scope in reverse order
2020-11-01 15:46:46 +01:00
.any(|(key, _)| name == key.as_ref())
2020-03-19 13:55:49 +01:00
}
2020-03-25 04:27:18 +01:00
/// Find an entry in the Scope, starting from the last.
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-05-04 13:36:58 +02:00
pub(crate) fn get_index(&self, name: &str) -> Option<(usize, EntryType)> {
2020-11-01 15:46:46 +01:00
self.names
2020-03-03 08:20:20 +01:00
.iter()
.enumerate()
2020-03-04 15:00:01 +01:00
.rev() // Always search a Scope in reverse order
2020-11-01 15:46:46 +01:00
.find_map(|(index, (key, _))| {
if name == key.as_ref() {
Some((index, self.types[index]))
} else {
None
2020-05-04 13:36:58 +02:00
}
})
}
2020-03-25 04:27:18 +01:00
/// Get the value of an entry in the Scope, starting from the last.
2020-04-05 17:43:40 +02:00
///
2020-10-27 04:30:38 +01:00
/// # Example
2020-04-05 17:43:40 +02:00
///
/// ```
/// use rhai::Scope;
///
/// let mut my_scope = Scope::new();
///
/// my_scope.push("x", 42_i64);
/// assert_eq!(my_scope.get_value::<i64>("x").unwrap(), 42);
/// ```
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-04-12 17:00:06 +02:00
pub fn get_value<T: Variant + Clone>(&self, name: &str) -> Option<T> {
2020-11-01 15:46:46 +01:00
self.names
.iter()
.enumerate()
.rev()
.find(|(_, (key, _))| name == key.as_ref())
.and_then(|(index, _)| self.values[index].flatten_clone().try_cast())
2020-03-03 08:20:20 +01:00
}
2020-04-05 17:43:40 +02:00
/// Update the value of the named entry.
/// Search starts backwards from the last, and only the first entry matching the specified name is updated.
/// If no entry matching the specified name is found, a new one is added.
2020-04-05 13:17:48 +02:00
///
/// # Panics
///
/// Panics when trying to update the value of a constant.
2020-04-05 17:43:40 +02:00
///
2020-10-27 04:30:38 +01:00
/// # Example
2020-04-05 17:43:40 +02:00
///
/// ```
/// use rhai::Scope;
///
/// let mut my_scope = Scope::new();
///
/// my_scope.push("x", 42_i64);
/// assert_eq!(my_scope.get_value::<i64>("x").unwrap(), 42);
///
/// my_scope.set_value("x", 0_i64);
/// assert_eq!(my_scope.get_value::<i64>("x").unwrap(), 0);
/// ```
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-11-03 14:50:14 +01:00
pub fn set_value(&mut self, name: &'a str, value: impl Variant + Clone) -> &mut Self {
2020-05-04 13:36:58 +02:00
match self.get_index(name) {
2020-07-12 05:46:53 +02:00
None => {
self.push(name, value);
}
2020-06-25 05:07:46 +02:00
Some((_, EntryType::Constant)) => panic!("variable {} is constant", name),
2020-04-27 16:49:09 +02:00
Some((index, EntryType::Normal)) => {
2020-11-01 15:46:46 +01:00
*self.values.get_mut(index).unwrap() = Dynamic::from(value);
2020-04-27 16:49:09 +02:00
}
2020-04-05 13:17:48 +02:00
}
2020-07-12 05:46:53 +02:00
self
2020-04-05 13:17:48 +02:00
}
2020-03-25 04:27:18 +01:00
/// Get a mutable reference to an entry in the Scope.
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-04-28 17:05:03 +02:00
pub(crate) fn get_mut(&mut self, index: usize) -> (&mut Dynamic, EntryType) {
2020-11-01 15:46:46 +01:00
(
self.values.get_mut(index).expect("invalid index in Scope"),
self.types[index],
)
2020-03-03 08:20:20 +01:00
}
2020-05-08 10:49:24 +02:00
/// Update the access type of an entry in the Scope.
2020-07-26 09:53:22 +02:00
#[cfg(not(feature = "no_module"))]
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-11-09 07:38:33 +01:00
pub(crate) fn add_entry_alias(&mut self, index: usize, alias: String) -> &mut Self {
2020-11-01 15:46:46 +01:00
let entry = self.names.get_mut(index).expect("invalid index in Scope");
2020-11-09 07:38:33 +01:00
if !entry.1.contains(&alias) {
entry.1.push(alias);
}
2020-07-12 05:46:53 +02:00
self
2020-05-08 10:49:24 +02:00
}
/// Clone the Scope, keeping only the last instances of each variable name.
/// Shadowed variables are omitted in the copy.
2020-10-08 16:25:50 +02:00
#[inline]
2020-10-12 11:00:58 +02:00
pub(crate) fn clone_visible(&self) -> Self {
2020-11-01 15:46:46 +01:00
let mut entries: Self = Default::default();
2020-11-01 15:46:46 +01:00
self.names
.iter()
.enumerate()
.rev()
.for_each(|(index, (name, alias))| {
if !entries.names.iter().any(|(key, _)| key == name) {
entries.names.push((name.clone(), alias.clone()));
entries.types.push(self.types[index]);
entries.values.push(self.values[index].clone());
}
});
2020-11-01 15:46:46 +01:00
entries
}
2020-05-05 17:57:25 +02:00
/// Get an iterator to entries in the Scope.
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-11-01 15:46:46 +01:00
pub(crate) fn into_iter(
self,
2020-11-09 07:38:33 +01:00
) -> impl Iterator<Item = (Cow<'a, str>, EntryType, Dynamic, Vec<String>)> {
2020-11-01 15:46:46 +01:00
self.names
.into_iter()
.zip(self.types.into_iter().zip(self.values.into_iter()))
2020-11-09 07:38:33 +01:00
.map(|((name, alias), (typ, value))| (name, typ, value, alias.to_vec()))
2020-03-03 08:20:20 +01:00
}
2020-06-24 16:45:34 +02:00
/// Get an iterator to entries in the Scope.
2020-11-01 15:46:46 +01:00
/// Shared values are flatten-cloned.
2020-06-24 16:45:34 +02:00
///
2020-10-27 04:30:38 +01:00
/// # Example
2020-06-24 16:45:34 +02:00
///
/// ```
/// use rhai::{Dynamic, Scope};
///
/// let mut my_scope = Scope::new();
///
/// my_scope.push("x", 42_i64);
2020-10-09 07:23:44 +02:00
/// my_scope.push_constant("foo", "hello".to_string());
2020-06-24 16:45:34 +02:00
///
/// let mut iter = my_scope.iter();
///
2020-10-09 07:23:44 +02:00
/// let (name, constant, value) = iter.next().unwrap();
2020-06-24 16:45:34 +02:00
/// assert_eq!(name, "x");
2020-10-09 07:23:44 +02:00
/// assert!(!constant);
2020-08-03 06:10:20 +02:00
/// assert_eq!(value.cast::<i64>(), 42);
2020-06-24 16:45:34 +02:00
///
2020-10-09 07:23:44 +02:00
/// let (name, constant, value) = iter.next().unwrap();
2020-06-24 16:45:34 +02:00
/// assert_eq!(name, "foo");
2020-10-09 07:23:44 +02:00
/// assert!(constant);
2020-08-03 06:10:20 +02:00
/// assert_eq!(value.cast::<String>(), "hello");
2020-06-24 16:45:34 +02:00
/// ```
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-10-09 07:23:44 +02:00
pub fn iter(&self) -> impl Iterator<Item = (&str, bool, Dynamic)> {
2020-08-03 06:10:20 +02:00
self.iter_raw()
2020-10-09 07:23:44 +02:00
.map(|(name, constant, value)| (name, constant, value.flatten_clone()))
2020-08-03 06:10:20 +02:00
}
/// Get an iterator to entries in the Scope.
/// Shared values are not expanded.
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-11-01 15:46:46 +01:00
pub fn iter_raw<'x: 'a>(&'x self) -> impl Iterator<Item = (&'a str, bool, &'x Dynamic)> + 'x {
self.names
.iter()
.zip(self.types.iter().zip(self.values.iter()))
.map(|((name, _), (typ, value))| (name.as_ref(), typ.is_constant(), value))
2020-06-24 16:45:34 +02:00
}
2020-03-03 08:20:20 +01:00
}
2020-04-27 14:43:55 +02:00
impl<'a, K: Into<Cow<'a, str>>> iter::Extend<(K, EntryType, Dynamic)> for Scope<'a> {
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-03-25 04:27:18 +01:00
fn extend<T: IntoIterator<Item = (K, EntryType, Dynamic)>>(&mut self, iter: T) {
2020-11-01 15:46:46 +01:00
iter.into_iter().for_each(|(name, typ, value)| {
2020-11-09 07:38:33 +01:00
self.names.push((name.into(), Box::new(Default::default())));
2020-11-01 15:46:46 +01:00
self.types.push(typ);
self.values.push(value);
});
}
}