Add conversion to WasmAstNode for wasm Objects.

This commit is contained in:
Tom Alexander
2023-12-27 19:53:07 -05:00
parent 7626a69fa1
commit 28ad4fd046
29 changed files with 235 additions and 1 deletions

View File

@@ -28,3 +28,9 @@ to_wasm!(
})
}
);
impl<'s, 'p> Into<WasmAstNode<'s, 'p>> for WasmTimestamp<'s, 'p> {
fn into(self) -> WasmAstNode<'s, 'p> {
WasmAstNode::Timestamp(self)
}
}