| 56 | } |
| 57 | |
| 58 | static std::string incompatibleParameterTypeMessage(const LogicalType& left, |
| 59 | const LogicalType& right) { |
| 60 | return std::format("Runtime exception: Cannot convert Python object to Lbug value : {} is " |
| 61 | "incompatible with {}", |
| 62 | left.toString(), right.toString()); |
| 63 | } |
| 64 | |
| 65 | static lbug_value* createCAPIValue(std::unique_ptr<Value> value) { |
| 66 | auto* c_value = (lbug_value*)calloc(1, sizeof(lbug_value)); |
no test coverage detected