| 1868 | } |
| 1869 | |
| 1870 | data_map CGenerator::getTypeInfo(DataType *t, bool isFunction) |
| 1871 | { |
| 1872 | (void)isFunction; |
| 1873 | data_map info; |
| 1874 | info["isNotVoid"] = make_data(t->getDataType() != DataType::data_type_t::kVoidType); |
| 1875 | return info; |
| 1876 | } |
| 1877 | |
| 1878 | string CGenerator::getErrorReturnValue(FunctionBase *fn) |
| 1879 | { |
nothing calls this directly
no test coverage detected