summaryrefslogtreecommitdiff
path: root/tools/generation/test/expected/indentation/tabs-indent-string-template.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/generation/test/expected/indentation/tabs-indent-string-template.js')
-rw-r--r--tools/generation/test/expected/indentation/tabs-indent-string-template.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/generation/test/expected/indentation/tabs-indent-string-template.js b/tools/generation/test/expected/indentation/tabs-indent-string-template.js
new file mode 100644
index 000000000..b40bd7578
--- /dev/null
+++ b/tools/generation/test/expected/indentation/tabs-indent-string-template.js
@@ -0,0 +1,21 @@
+// This file was procedurally generated from the following sources:
+// - tools/generation/test/fixtures/indent-string-template.case
+// - tools/generation/test/fixtures/indentation/tabs.template
+/*---
+description: String template spanning multiple lines (Preserving "hard" indentation across newlines)
+flags: [generated]
+---*/
+
+(function() {
+ `this string template is declared across multiple lines
+
+which disqualifies it as a candidate for indentation
+it also happens to contain ' and ".`;
+
+ if (true) {
+ `this string template is declared across multiple lines
+
+which disqualifies it as a candidate for indentation
+it also happens to contain ' and ".`;
+ }
+}());