(&self, ty: &str, val: Bytes)
| 119 | } |
| 120 | |
| 121 | fn bytes_v(&self, ty: &str, val: Bytes) -> RValue { |
| 122 | RValue::Bytes { |
| 123 | typename: ty.into(), |
| 124 | value: val.into_bytes(), |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | fn arr_v<I: Iterator<Item = RValue>>(&self, iter: I) -> RValue { |
| 129 | RValue::Array { |