TypeScript/tests/cases/fourslash/smartIndentInsideMultilineString.ts

31 lines
589 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <reference path='fourslash.ts' />
////window.onload = () => {
//// var el = document.getElementById('content\
////sometext/*1*/');
//// var greeter = new Greeter(el);
//// greeter.start();
////};
////
////var x = "line1\
////line2\
////lin/*2*/e3\
////line4";
////
////function foo1() {
//// function foo2() {
//// function foo3() {
//// 'line1\
////lin/*3*/e2';
//// }
//// }
////}
goTo.marker("1");
2014-09-11 19:54:30 +02:00
verify.indentationIs(0);
2014-07-13 01:04:16 +02:00
goTo.marker("2");
2014-09-11 19:54:30 +02:00
verify.indentationIs(0);
2014-07-13 01:04:16 +02:00
goTo.marker("3");
2014-09-11 19:54:30 +02:00
verify.indentationIs(0);