| 292 | namespace _impl_ { |
| 293 | |
| 294 | template <auto ir> struct Compile { |
| 295 | static constexpr auto expr = detail::expr::val<ir>; |
| 296 | }; |
| 297 | |
| 298 | template <code::Var var> struct Compile<var> { |
| 299 | static constexpr auto expr = detail::expr::var<var.name>; |
nothing calls this directly
no outgoing calls
no test coverage detected