(position, sourceFile, formatContext)
| 147029 | } |
| 147030 | formatting.formatOnOpeningCurly = formatOnOpeningCurly; |
| 147031 | function formatOnClosingCurly(position, sourceFile, formatContext) { |
| 147032 | var precedingToken = findImmediatelyPrecedingTokenOfKind(position, 19 /* SyntaxKind.CloseBraceToken */, sourceFile); |
| 147033 | return formatNodeLines(findOutermostNodeWithinListLevel(precedingToken), sourceFile, formatContext, 5 /* FormattingRequestKind.FormatOnClosingCurlyBrace */); |
| 147034 | } |
| 147035 | formatting.formatOnClosingCurly = formatOnClosingCurly; |
| 147036 | function formatDocument(sourceFile, formatContext) { |
| 147037 | var span = { |
nothing calls this directly
no test coverage detected