** Load a non-nullable string into prototype 'p'. */
| 134 | ** Load a non-nullable string into prototype 'p'. |
| 135 | */ |
| 136 | static TString *loadString (LoadState *S, Proto *p) { |
| 137 | TString *st = loadStringN(S, p); |
| 138 | if (st == NULL) |
| 139 | error(S, "bad format for constant string"); |
| 140 | return st; |
| 141 | } |
| 142 | |
| 143 | |
| 144 | static void loadCode (LoadState *S, Proto *f) { |
no test coverage detected