| 131 | } |
| 132 | |
| 133 | Internal( double d ) : Float( d ), Type(Class::Floating) {} |
| 134 | Internal( int64_t l ) : Int( l ), Type(Class::Integral) {} |
| 135 | Internal( bool b ) : Bool( b ), Type(Class::Boolean) {} |
| 136 | Internal( std::string s ) : String(std::make_unique<std::string>(std::move(s))), Type(Class::String) {} |
nothing calls this directly
no outgoing calls
no test coverage detected