+ xo-interpreter2 scaffold for constant expression [WIP]

This commit is contained in:
Roland Conybeare 2026-01-13 01:40:48 -05:00
commit 47239f98e5
24 changed files with 453 additions and 32 deletions

View file

@ -14,6 +14,7 @@ namespace xo {
struct DFloat {
using AAllocator = xo::mm::AAllocator;
using ppindentinfo = xo::print::ppindentinfo;
using value_type = double;
explicit DFloat(double x) : value_{x} {}

View file

@ -15,6 +15,7 @@ namespace xo {
struct DInteger {
using AAllocator = xo::mm::AAllocator;
using ppindentinfo = xo::print::ppindentinfo;
using value_type = long;
explicit DInteger(long x) : value_{x} {}