(node)
| 112496 | emitTokenWithComment(19 /* SyntaxKind.CloseBraceToken */, node.statements.end, writePunctuation, /*contextNode*/ node, /*indentLeading*/ !!(format & 1 /* ListFormat.MultiLine */)); |
| 112497 | } |
| 112498 | function emitVariableStatement(node) { |
| 112499 | emitModifiers(node, node.modifiers); |
| 112500 | emit(node.declarationList); |
| 112501 | writeTrailingSemicolon(); |
| 112502 | } |
| 112503 | function emitEmptyStatement(isEmbeddedStatement) { |
| 112504 | // While most trailing semicolons are possibly insignificant, an embedded "empty" |
| 112505 | // statement is significant and cannot be elided by a trailing-semicolon-omitting writer. |
no test coverage detected
searching dependent graphs…