File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -759,7 +759,7 @@ namespace ts.formatting {
759
759
if ( child . kind === SyntaxKind . JsxText ) {
760
760
const range : TextRange = { pos : child . getStart ( ) , end : child . getEnd ( ) } ;
761
761
if ( range . pos !== range . end ) { // don't indent zero-width jsx text
762
- let tempNode : Node
762
+ let tempNode : Node ;
763
763
let previousNode : Node | undefined ;
764
764
forEachChild ( parent , childNode => {
765
765
if ( childNode . pos === child . pos ) {
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ namespace ts.formatting {
154
154
shouldRescanTemplateToken ( n ) ? ScanAction . RescanTemplateToken :
155
155
shouldRescanJsxIdentifier ( n ) ? ScanAction . RescanJsxIdentifier :
156
156
shouldRescanJsxText ( n ) ? ScanAction . RescanJsxText :
157
- shouldRescanJsxAttributeValue ( n ) ? ScanAction . RescanJsxAttributeValue :
157
+ shouldRescanJsxAttributeValue ( n ) ? ScanAction . RescanJsxAttributeValue :
158
158
ScanAction . Scan ;
159
159
160
160
if ( lastTokenInfo && expectedScanAction === lastScanAction ) {
You can’t perform that action at this time.
0 commit comments