| 749 | } |
| 750 | |
| 751 | void Pointer::SetPointeeType(const Type* type) { pointee_type_ = type; } |
| 752 | |
| 753 | Function::Function(const Type* ret_type, const std::vector<const Type*>& params) |
| 754 | : Type(kFunction), return_type_(ret_type), param_types_(params) {} |
no outgoing calls
no test coverage detected