summaryrefslogtreecommitdiff
path: root/tools/generation/test/expected/indentation/spaces-indent-string-continuation.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/generation/test/expected/indentation/spaces-indent-string-continuation.js')
-rw-r--r--tools/generation/test/expected/indentation/spaces-indent-string-continuation.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/generation/test/expected/indentation/spaces-indent-string-continuation.js b/tools/generation/test/expected/indentation/spaces-indent-string-continuation.js
new file mode 100644
index 000000000..da98f99a3
--- /dev/null
+++ b/tools/generation/test/expected/indentation/spaces-indent-string-continuation.js
@@ -0,0 +1,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';
+ }
+}());