object-introspection/types/try_type.toml
2022-12-19 06:37:51 -08:00

30 lines
600 B
TOML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[info]
typeName = "folly::Try<"
numTemplateParams = 1
ctype = "TRY_TYPE"
header = "folly/Try.h"
ns = ["folly::Try"]
replaceTemplateParamIndex = []
# allocatorIndex = 0
# underlyingContainerIndex = 0
[codegen]
decl = """
template<typename T>
void getSizeType(const %1%<T> &s_ptr, size_t& returnArg);
"""
func = """
template<typename T>
void getSizeType(const %1%<T> &s_ptr, size_t& returnArg)
{
SAVE_SIZE(sizeof(%1%<T>));
if (s_ptr.hasValue()) {
SAVE_DATA((uintptr_t)(&(s_ptr.value())));
getSizeType(s_ptr.value(), returnArg);
} else {
SAVE_DATA(0);
}
}
"""