MCPcopy Create free account
hub / github.com/dail8859/NotepadNext / FindConstant

Method FindConstant

src/IFaceTableMixer.cpp:22–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20#include "IFaceTableMixer.h"
21
22const IFaceConstant *IFaceTableMixer::FindConstant(const char *name) const {
23 for (auto const &iface : ifaces) {
24 const IFaceConstant *ret = iface->FindConstant(name);
25 if (ret != nullptr) return ret;
26 }
27 return nullptr;
28}
29
30const IFaceFunction *IFaceTableMixer::FindFunction(const char *name) const {
31 for (auto const &iface : ifaces) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected