2023-12-29 15:03:36 -05:00
|
|
|
use serde::Deserialize;
|
2023-12-25 11:33:43 -05:00
|
|
|
use serde::Serialize;
|
|
|
|
|
2023-12-29 15:03:36 -05:00
|
|
|
use super::ast_node::WasmAstNode;
|
2023-12-25 11:33:43 -05:00
|
|
|
use super::macros::to_wasm;
|
|
|
|
use super::to_wasm::ToWasm;
|
2023-12-29 15:03:36 -05:00
|
|
|
use super::AdditionalProperties;
|
|
|
|
use crate::compare::ElispFact;
|
2023-12-29 21:36:52 -05:00
|
|
|
use crate::types::GetAffiliatedKeywords;
|
2023-12-27 11:36:47 -05:00
|
|
|
use crate::types::Keyword;
|
2023-12-25 11:33:43 -05:00
|
|
|
use crate::wasm::to_wasm::ToWasmStandardProperties;
|
|
|
|
|
2023-12-29 15:03:36 -05:00
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
2023-12-29 12:49:43 -05:00
|
|
|
pub struct WasmKeyword {
|
2023-12-29 15:03:36 -05:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub(crate) additional_properties: AdditionalProperties,
|
2023-12-29 21:36:52 -05:00
|
|
|
pub(crate) key: String,
|
|
|
|
pub(crate) value: String,
|
2023-12-25 11:33:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
to_wasm!(
|
2023-12-29 12:49:43 -05:00
|
|
|
WasmKeyword,
|
2023-12-25 11:51:39 -05:00
|
|
|
Keyword<'s>,
|
2023-12-25 12:32:35 -05:00
|
|
|
original,
|
2023-12-25 11:33:43 -05:00
|
|
|
wasm_context,
|
2023-12-29 15:03:36 -05:00
|
|
|
{ WasmAstNode::Keyword(original) },
|
2023-12-29 21:36:52 -05:00
|
|
|
{ "keyword".into() },
|
2023-12-25 11:33:43 -05:00
|
|
|
{
|
2023-12-29 21:36:52 -05:00
|
|
|
let additional_properties = original
|
|
|
|
.get_affiliated_keywords()
|
|
|
|
.to_wasm(wasm_context.clone())?;
|
|
|
|
|
2023-12-29 15:03:36 -05:00
|
|
|
Ok((
|
|
|
|
Vec::new(),
|
|
|
|
WasmKeyword {
|
2023-12-29 21:36:52 -05:00
|
|
|
additional_properties,
|
2023-12-29 21:59:45 -05:00
|
|
|
key: original.key.to_uppercase(),
|
2023-12-29 21:36:52 -05:00
|
|
|
value: original.value.to_owned(),
|
2023-12-29 15:03:36 -05:00
|
|
|
},
|
|
|
|
))
|
2023-12-25 11:33:43 -05:00
|
|
|
}
|
|
|
|
);
|