xo-interpreter: expose builtin primitives to interpreter

This commit is contained in:
Roland Conybeare 2025-11-29 11:39:34 -05:00
commit 212a1fdc8c
6 changed files with 135 additions and 44 deletions

View file

@ -14,6 +14,16 @@ namespace xo {
static gp<Object> to_object(gc::IAlloc * mm, const T & x) = delete;
static T from_object(gc::IAlloc * mm, gp<Object> x) = delete;
};
/** see specializations:
* ObjectConversion<bool>
* in object/Boolean.hpp
*
* ObjectConversion<int64_t>
* ObjectConversion<int32_t>
* ObjectConversion<int16_t>
* in object/Integer.hpp
**/
}
}