| 23 | using namespace ::bytedance::bolt; |
| 24 | |
| 25 | TypePtr tryResolveType(const exec::TypeSignature& signature) { |
| 26 | std::unordered_map<std::string, exec::SignatureVariable> variables; |
| 27 | std::unordered_map<std::string, TypePtr> resolvedTypeVariables; |
| 28 | return exec::SignatureBinder::tryResolveType( |
| 29 | signature, variables, resolvedTypeVariables); |
| 30 | } |
| 31 | |
| 32 | struct TypeSignatureTest : public testing::Test { |
| 33 | void SetUp() override { |
no outgoing calls
no test coverage detected