summaryrefslogtreecommitdiff
path: root/test/indent/javascript/deindent-complex-brace-structure/out
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2020-07-30 21:14:37 +1000
committerMaxime Coste <mawww@kakoune.org>2020-07-30 21:14:37 +1000
commit55fbdb3606a802c5de30dfd41f196bc18ead85cf (patch)
treefd6886acce862004dcb526745a1d0e0f46d92352 /test/indent/javascript/deindent-complex-brace-structure/out
parentb322a1f29c4ff35d8a2177f46ef6580c4c5431b0 (diff)
parent6258646f412159259b98d80f22b80be54f63dcca (diff)
Merge remote-tracking branch 'johnisom/deindent-closing-braces'
Diffstat (limited to 'test/indent/javascript/deindent-complex-brace-structure/out')
-rw-r--r--test/indent/javascript/deindent-complex-brace-structure/out12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/indent/javascript/deindent-complex-brace-structure/out b/test/indent/javascript/deindent-complex-brace-structure/out
new file mode 100644
index 00000000..1d675934
--- /dev/null
+++ b/test/indent/javascript/deindent-complex-brace-structure/out
@@ -0,0 +1,12 @@
+for (let i = 1; i < 5; ++i) {
+ if (true) {
+ console.log(
+ {
+ foo: { bar: 1 },
+ },
+ {
+ baz: { bam: 2 },
+ },
+ );
+ }
+}