| 213 | } |
| 214 | |
| 215 | void PrintFunction(const Proto* f, int full) |
| 216 | { |
| 217 | int i,n=f->sizep; |
| 218 | PrintHeader(f); |
| 219 | PrintCode(f); |
| 220 | if (full) |
| 221 | { |
| 222 | PrintConstants(f); |
| 223 | PrintLocals(f); |
| 224 | PrintUpvalues(f); |
| 225 | } |
| 226 | for (i=0; i<n; i++) PrintFunction(f->p[i],full); |
| 227 | } |
nothing calls this directly
no test coverage detected