()
| 1379 | |
| 1380 | |
| 1381 | def _full_name_struct(): |
| 1382 | global _name_struct |
| 1383 | struct = _name_struct |
| 1384 | name = "" |
| 1385 | while struct: |
| 1386 | name = struct.name() + "/" + name |
| 1387 | struct = struct.parent() |
| 1388 | return name |
| 1389 | |
| 1390 | |
| 1391 | def _full_name_scope(): |
no test coverage detected