| 86 | |
| 87 | |
| 88 | static void dumpString (DumpState *D, const TString *s) { |
| 89 | if (s == NULL) |
| 90 | dumpSize(D, 0); |
| 91 | else { |
| 92 | size_t size = tsslen(s); |
| 93 | const char *str = getstr(s); |
| 94 | dumpSize(D, size + 1); |
| 95 | dumpVector(D, str, size); |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | |
| 100 | static void dumpCode (DumpState *D, const Proto *f) { |
no test coverage detected