diff options
author | Noah Peart <noah.v.peart@gmail.com> | 2023-11-21 15:59:48 +0200 |
---|---|---|
committer | Dmitry Gutov <dmitry@gutov.dev> | 2023-11-21 16:26:54 +0200 |
commit | 9af03e0e1897bce2fce71b79549d4461d7ea1dad (patch) | |
tree | 4f2903b14f6543c23f50ddd758f30b16a7c91635 /test/lisp | |
parent | 61cdf42a48fab24b7ee4098ffedf7254080f808b (diff) | |
download | emacs-9af03e0e1897bce2fce71b79549d4461d7ea1dad.tar.gz emacs-9af03e0e1897bce2fce71b79549d4461d7ea1dad.tar.bz2 emacs-9af03e0e1897bce2fce71b79549d4461d7ea1dad.zip |
typescript-ts-mode: Support indentation for conditionals without braces
* lisp/progmodes/typescript-ts-mode.el
(typescript-ts-mode--indent-rules): Support indentation for
conditionals without braces (bug#67031).
* test/lisp/progmodes/typescript-ts-mode-resources/indent.erts
(Statement indentation without braces): New test.
Diffstat (limited to 'test/lisp')
-rw-r--r-- | test/lisp/progmodes/typescript-ts-mode-resources/indent.erts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/lisp/progmodes/typescript-ts-mode-resources/indent.erts b/test/lisp/progmodes/typescript-ts-mode-resources/indent.erts index 146ee76574e..20f423259b4 100644 --- a/test/lisp/progmodes/typescript-ts-mode-resources/indent.erts +++ b/test/lisp/progmodes/typescript-ts-mode-resources/indent.erts @@ -23,6 +23,28 @@ const foo = () => { } =-=-= +Name: Statement indentation without braces + +=-= +const foo = () => { + if (true) + console.log("if_statement"); + else if (false) + console.log("if_statement"); + else + console.log("else_clause"); + for (let i = 0; i < 1; i++) + console.log("for_statement"); + for (let i of [true]) + console.log("for_in_statement"); + while (false) + console.log("while_statement"); + do + console.log("do_statement"); + while (false) +}; +=-=-= + Code: (lambda () (setq indent-tabs-mode nil) |