MCPcopy Create free account
hub / github.com/argotorg/solidity / exists

Method exists

libyul/Scope.cpp:66–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64}
65
66bool Scope::exists(YulName _name) const
67{
68 if (identifiers.count(_name))
69 return true;
70 else if (superScope)
71 return superScope->exists(_name);
72 else
73 return false;
74}
75
76size_t Scope::numberOfVariables() const
77{

Callers 3

solc_pathFunction · 0.80
download_fileFunction · 0.80
download_projectFunction · 0.80

Calls 1

countMethod · 0.45

Tested by 2

solc_pathFunction · 0.64
download_projectFunction · 0.64