std::string MethodPencilKey( RC::ConstHandle<CG::Adapter> const &thisAdapter, std::string const &name ) { return "m:" + thisAdapter->getCodeName() + ":" + name; }
std::string ConstructorPencilKey( RC::ConstHandle<CG::Adapter> const &thisAdapter ) { return "c:" + thisAdapter->getCodeName(); }
std::string AssignOpPencilKey( RC::ConstHandle<CG::Adapter> const &thisAdapter, AssignOpType type ) { return "a:" + thisAdapter->getCodeName() + ":" + assignOpCodeName(type); }