(kind, type, postfix)
| 25592 | // createJSDocNullableType |
| 25593 | // createJSDocNonNullableType |
| 25594 | function createJSDocPrePostfixUnaryTypeWorker(kind, type, postfix) { |
| 25595 | if (postfix === void 0) { postfix = false; } |
| 25596 | var node = createJSDocUnaryTypeWorker(kind, postfix ? type && parenthesizerRules().parenthesizeNonArrayTypeOfPostfixType(type) : type); |
| 25597 | node.postfix = postfix; |
| 25598 | return node; |
| 25599 | } |
| 25600 | // @api |
| 25601 | // createJSDocOptionalType |
| 25602 | // createJSDocVariadicType |
no test coverage detected