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