| 199 | } |
| 200 | |
| 201 | var runtime_type::parse_new(const var &b) |
| 202 | { |
| 203 | if (b.is_type_of<type_t>()) |
| 204 | return b.const_val<type_t>().constructor(); |
| 205 | else |
| 206 | throw runtime_error("Unsupported operator operations(New)."); |
| 207 | } |
| 208 | |
| 209 | var runtime_type::parse_gcnew(const var &b) |
| 210 | { |
nothing calls this directly
no test coverage detected