| 299 | } |
| 300 | |
| 301 | Value String(const std::string& s) { |
| 302 | Value v; v.type = Type::String; v.strVal = s; return v; |
| 303 | } |
| 304 | |
| 305 | Value Number(double n) { |
| 306 | Value v; v.type = Type::Number; v.numVal = n; return v; |
no outgoing calls
no test coverage detected