| 67 | } |
| 68 | |
| 69 | const IFaceFunction *IFaceTable::FindFunctionByValue(int value) const { |
| 70 | for (const auto &func : functions) { |
| 71 | if (func.value == value) |
| 72 | return &func; |
| 73 | } |
| 74 | return nullptr; |
| 75 | } |
| 76 | |
| 77 | const IFaceProperty *IFaceTable::FindProperty(const char *name) const { |
| 78 | return binary_find(properties.cbegin(), properties.cend(), name); |
nothing calls this directly
no outgoing calls
no test coverage detected