mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
Merge remote-tracking branch 'origin/trunk' into fix-nested-imports
This commit is contained in:
commit
c45e3ec4b4
93 changed files with 3258 additions and 4416 deletions
|
@ -95,8 +95,10 @@ impl<T: FromWasmerMemory + Clone> FromWasmerMemory for RocList<T> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<T: FromWasmerMemory + Wasm32Sized, E: FromWasmerMemory + Wasm32Sized> FromWasmerMemory
|
||||
for RocResult<T, E>
|
||||
impl<T, E> FromWasmerMemory for RocResult<T, E>
|
||||
where
|
||||
T: FromWasmerMemory + Wasm32Sized,
|
||||
E: FromWasmerMemory + Wasm32Sized,
|
||||
{
|
||||
fn decode(memory: &wasmer::Memory, offset: u32) -> Self {
|
||||
let tag_offset = Ord::max(T::ACTUAL_WIDTH, E::ACTUAL_WIDTH);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue