Populating document's children.

This commit is contained in:
Tom Alexander
2023-12-25 12:55:48 -05:00
parent 995b41e697
commit 67e5829fd9
5 changed files with 40 additions and 8 deletions

View File

@@ -1,9 +1,9 @@
use std::marker::PhantomData;
use organic::types::Heading;
use serde::Deserialize;
use serde::Serialize;
use super::ast_node::WasmAstNode;
use super::macros::to_wasm;
use super::standard_properties::WasmStandardProperties;
use super::to_wasm::ToWasm;
@@ -11,7 +11,7 @@ use crate::wasm::to_wasm::ToWasmStandardProperties;
#[derive(Debug, Serialize)]
#[serde(tag = "ast_node")]
#[serde(rename = "org-data")]
#[serde(rename = "headline")]
pub(crate) struct WasmHeadline<'s> {
standard_properties: WasmStandardProperties,
children: Vec<()>,
@@ -32,3 +32,9 @@ to_wasm!(
})
}
);
impl<'s> Into<WasmAstNode<'s>> for WasmHeadline<'s> {
fn into(self) -> WasmAstNode<'s> {
WasmAstNode::Headline(self)
}
}