(s string, maskCount bool)
| 453 | } |
| 454 | |
| 455 | func stringToMask(s string, maskCount bool) (mask byte) { |
| 456 | for r, b := range map[rune]byte{'c': MaskCall, 'r': MaskReturn, 'l': MaskLine} { |
| 457 | if strings.ContainsRune(s, r) { |
| 458 | mask |= b |
| 459 | } |
| 460 | } |
| 461 | if maskCount { |
| 462 | mask |= MaskCount |
| 463 | } |
| 464 | return |
| 465 | } |
| 466 | |
| 467 | var debugLibrary = []RegistryFunction{ |
| 468 | // {"debug", db_debug}, |
no outgoing calls
no test coverage detected
searching dependent graphs…