summaryrefslogtreecommitdiff
path: root/tools/generation/test/expected/indentation/spaces-indent-string-continuation.js
blob: da98f99a3fe48560c6504d917944c010a4466f77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// This file was procedurally generated from the following sources:
// - tools/generation/test/fixtures/indent-string-continuation.case
// - tools/generation/test/fixtures/indentation/spaces.template
/*---
description: Multiline string via a line continuation character (Preserving "soft" indentation across newlines)
flags: [generated]
---*/

(function() {
  'this string is declared across multiple lines\
\
which disqualifies it as a candidate for indentation';

  if (true) {
    'this string is declared across multiple lines\
\
which disqualifies it as a candidate for indentation';
  }
}());