| 207 | } |
| 208 | |
| 209 | var runtime_type::parse_gcnew(const var &b) |
| 210 | { |
| 211 | if (b.is_type_of<type_t>()) |
| 212 | return var::make<pointer>(b.const_val<type_t>().constructor()); |
| 213 | else |
| 214 | throw runtime_error("Unsupported operator operations(GcNew)."); |
| 215 | } |
| 216 | |
| 217 | var runtime_type::parse_und(const var &a, const var &b) |
| 218 | { |
nothing calls this directly
no test coverage detected