TypeScript/tests/cases/fourslash/smartIndentNestedModule.ts
2014-07-29 12:17:44 -07:00

17 lines
449 B
TypeScript

/// <reference path='fourslash.ts'/>
////module Foo {
//// module Foo2 {
//// {| "indentation": 8 |}
//// function f() {
//// }
//// {| "indentation": 8 |}
//// var x: number;
//// {| "indentation": 8 |}
//// }
//// {| "indentation": 4 |}
////}
test.markers().forEach((marker) => {
verify.indentationAtPositionIs(marker.fileName, marker.position, marker.data.indentation);
});