MCPcopy Create free account
hub / github.com/beefytech/Beef / BfLocalVarEntry

Class BfLocalVarEntry

IDEHelper/Compiler/BfModule.h:968–986  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

966};
967
968struct BfLocalVarEntry
969{
970 BfLocalVariable* mLocalVar;
971
972 BfLocalVarEntry(BfLocalVariable* localVar)
973 {
974 mLocalVar = localVar;
975 }
976
977 bool operator==(const BfLocalVarEntry& other) const
978 {
979 return mLocalVar->mName == other.mLocalVar->mName;
980 }
981
982 bool operator==(const StringImpl& name) const
983 {
984 return mLocalVar->mName == name;
985 }
986};
987
988class BfLambdaCaptureInfo
989{

Callers 4

DoAddLocalVariableMethod · 0.85
CheckVariableDefMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected