(name, cirType, n)
| 312 | _saveCircuit(subCKT, name, cirType) |
| 313 | |
| 314 | def _addErrors(name, cirType, n): |
| 315 | global _CIRCUITS, _USERCIRCUITS, _SLiCAPCIRCUITS |
| 316 | if cirType == 'system': |
| 317 | _SLiCAPCIRCUITS[name].errors += n |
| 318 | elif cirType == 'user': |
| 319 | _USERCIRCUITS[name].errors += n |
| 320 | elif cirType == 'main': |
| 321 | _CIRCUITS[name].errors += n |
| 322 | |
| 323 | def _saveCircuit(cir, name, cirType): |
| 324 | global _CIRCUITS, _USERCIRCUITS, _SLiCAPCIRCUITS |
no outgoing calls
no test coverage detected