(node)
| 15438 | } |
| 15439 | ts.isDeclarationReadonly = isDeclarationReadonly; |
| 15440 | function isVarConst(node) { |
| 15441 | return !!(ts.getCombinedNodeFlags(node) & 2 /* NodeFlags.Const */); |
| 15442 | } |
| 15443 | ts.isVarConst = isVarConst; |
| 15444 | function isLet(node) { |
| 15445 | return !!(ts.getCombinedNodeFlags(node) & 1 /* NodeFlags.Let */); |
no outgoing calls
no test coverage detected
searching dependent graphs…