Closed
Description
/// <reference path='fourslash.ts' />
//@Filename: file.tsx
////(function () {
//// return (
//// <div>
//// <div>
//// </div>
//// /*indent2*/
//// </div>
//// )
////})
format.document();
goTo.marker("indent2");
verify.indentationIs(12);
This causes error (in master branch):
Error: Debug Failure. False expression:
at Object.assert (eval at <anonymous> (C:\Users\sasch_000\Documents\GitHub\typescript-f\built\local\run.js:53472:13), <anonymous>:1549:23)
Inserting a text line prevents this error. (foo)
//@Filename: file.tsx
////(function () {
//// return (
//// <div>
//// <div>
//// </div>
//// foo
//// /*indent2*/
//// </div>
//// )
////})