Improving WasmElispCompare.

This commit is contained in:
Tom Alexander
2023-12-27 13:21:20 -05:00
parent e83417b243
commit 20a7c89084
3 changed files with 73 additions and 77 deletions

View File

@@ -15,7 +15,7 @@ use crate::wasm::to_wasm::ToWasmStandardProperties;
pub struct WasmDocument<'s, 'p> {
standard_properties: WasmStandardProperties,
additional_properties: Vec<(String, &'s str)>,
children: Vec<WasmAstNode<'s, 'p>>,
pub(crate) children: Vec<WasmAstNode<'s, 'p>>,
category: Option<&'p str>,
path: Option<PathBuf>,
}