mirror of https://github.com/tc39/test262.git
20 lines
592 B
JavaScript
20 lines
592 B
JavaScript
// This file was procedurally generated from the following sources:
|
|
// - tools/generation/test/fixtures/indent-string-continuation.case
|
|
// - tools/generation/test/fixtures/indentation/tabs.template
|
|
/*---
|
|
description: Multiline string via a line continuation character (Preserving "hard" 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';
|
|
}
|
|
}());
|