prefix the name with the current scope.
(name)
| 316 | |
| 317 | |
| 318 | def ScopedName(name): |
| 319 | """prefix the name with the current scope.""" |
| 320 | if isinstance(name, bytes): |
| 321 | name = name.decode('ascii') |
| 322 | return scope.CurrentNameScope() + name |
| 323 | |
| 324 | |
| 325 | def ScopedBlobReference(name, *args, **kwargs): |
no test coverage detected
searching dependent graphs…