(fmtstr, convposn, curconv, reason)
| 147090 | case 'x': |
| 147091 | ret += doPad(pad, width, left, arg.toString(16)); |
| 147092 | break; |
| 147093 | |
| 147094 | case 'j': /* non-standard */ |
| 147095 | if (width === 0) |
| 147096 | width = 10; |
| 147097 | ret += mod_util.inspect(arg, false, width); |
| 147098 | break; |
| 147099 | |
| 147100 | case 'r': /* non-standard */ |
| 147101 | ret += dumpException(arg); |
| 147102 | break; |
| 147103 |