mirror of
https://github.com/tc39/test262.git
synced 2025-07-31 01:44:54 +02:00
In order to promote readability of the generated test material, the test generation tool may insert whitespace if the context a given expanded variable calls for it. Avoid inserting such whitespace within literal values that span multiple lines.
12 lines
335 B
Plaintext
12 lines
335 B
Plaintext
// Copyright (C) 2017 Mike Pennisi. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
template: indentation
|
|
desc: Multiline string via a line continuation character
|
|
---*/
|
|
|
|
//- value
|
|
'this string is declared across multiple lines\
|
|
\
|
|
which disqualifies it as a candidate for indentation';
|