| 221 | } |
| 222 | |
| 223 | Maybe<Scope> InstructionsBuilder::GetScopeSymbol(const ScopeProto& scope_proto) { |
| 224 | return Singleton<symbol::Storage<Scope>>::Get()->FindOrCreate(scope_proto, &NewSymbolId); |
| 225 | } |
| 226 | |
| 227 | Maybe<OperatorConfSymbol> InstructionsBuilder::GetOpConfSymbol(const OperatorConf& op_conf) { |
| 228 | return Singleton<symbol::Storage<OperatorConfSymbol>>::Get()->FindOrCreate(op_conf, &NewSymbolId); |
no test coverage detected