branch: externals/phps-mode commit a30c3f6e7b0c80cc3f4125d39320ae6430d9a668 Author: Christian Johansson <christ...@cvj.se> Commit: Christian Johansson <christ...@cvj.se>
More work on indentation tests --- phps-mode-functions.el | 30 ++++++++++++++++++++++-------- phps-mode-test-functions.el | 4 ++-- 2 files changed, 24 insertions(+), 10 deletions(-) diff --git a/phps-mode-functions.el b/phps-mode-functions.el index 4f45d5b..d1d7036 100644 --- a/phps-mode-functions.el +++ b/phps-mode-functions.el @@ -107,15 +107,18 @@ (setq nesting-end (+ round-bracket-level square-bracket-level curly-bracket-level alternative-control-structure-level inline-control-structure-level in-assignment-level in-class-declaration-level)) ;; Is line ending indentation lesser than line beginning indentation? - (when (and (< nesting-end nesting-start) - (> column-level 0)) + (when (< nesting-end nesting-start) ;; Decrement column (if allow-custom-column-decrement (progn (setq column-level (- column-level (- nesting-start nesting-end))) (setq allow-custom-column-increment nil)) - (setq column-level (1- column-level)))) + (setq column-level (1- column-level))) + + ;; Prevent negative column-values + (when (< column-level 0) + (setq column-level 0))) ;; Is line ending indentation equal to line beginning indentation and did we have a change of scope? (when (and (= nesting-end nesting-start) @@ -127,7 +130,7 @@ (when first-token-is-nesting-increase (setq column-level (1+ column-level)))) - ;; (message "new line %s or last token at %s, %s %s.%s (%s - %s) = %s %s %s %s %s [%s %s] %s %s %s" token-start-line-number token last-token column-level tuning-level nesting-start nesting-end round-bracket-level square-bracket-level curly-bracket-level alternative-control-structure-level inline-control-structure-level first-token-is-nesting-decrease first-token-is-nesting-increase in-assignment in-assignment-level in-class-declaration-level) + (message "new line %s or last token at %s, %s %s.%s (%s - %s) = %s %s %s %s %s [%s %s] %s %s %s" token-start-line-number token last-token column-level tuning-level nesting-start nesting-end round-bracket-level square-bracket-level curly-bracket-level alternative-control-structure-level inline-control-structure-level first-token-is-nesting-decrease first-token-is-nesting-increase in-assignment in-assignment-level in-class-declaration-level) ;; Put indent-level to hash-table (when (> last-line-number 0) @@ -387,15 +390,26 @@ (setq nesting-end (+ round-bracket-level square-bracket-level curly-bracket-level alternative-control-structure-level inline-control-structure-level in-assignment-level in-class-declaration-level)) ;; Is line ending indentation lesser than line beginning indentation? - (when (and (< nesting-end nesting-start) - (> column-level 0)) + (when (< nesting-end nesting-start) ;; Decrement column (if allow-custom-column-decrement (progn (setq column-level (- column-level (- nesting-start nesting-end))) (setq allow-custom-column-increment nil)) - (setq column-level (1- column-level)))) + (setq column-level (1- column-level))) + + ;; Positive nesting should set positive column + (when (and (<= column-level 0) + (> nesting-end 0)) + (message "Setting column-level to 1") + (setq column-level 1)) + + ;; Prevent negative column-values + (when (< column-level 0) + (setq column-level 0)) + + ) ;; Is line ending indentation equal to line beginning indentation and did we have a change of scope? (when (= nesting-end nesting-start) @@ -405,7 +419,7 @@ (when first-token-is-nesting-increase (setq column-level (1+ column-level)))) - ;; (message "last token at %s %s.%s (%s - %s) = %s %s %s %s %s [%s %s] %s %s" last-token column-level tuning-level nesting-start nesting-end round-bracket-level square-bracket-level curly-bracket-level alternative-control-structure-level inline-control-structure-level first-token-is-nesting-decrease first-token-is-nesting-increase in-assignment-level in-class-declaration-level) + (message "last token at %s %s.%s (%s - %s) = %s %s %s %s %s [%s %s] %s %s" last-token column-level tuning-level nesting-start nesting-end round-bracket-level square-bracket-level curly-bracket-level alternative-control-structure-level inline-control-structure-level first-token-is-nesting-decrease first-token-is-nesting-increase in-assignment-level in-class-declaration-level) ;; Put indent-level to hash-table (puthash last-line-number `(,column-level ,tuning-level) line-indents) diff --git a/phps-mode-test-functions.el b/phps-mode-test-functions.el index 2e8bbed..8512b2c 100644 --- a/phps-mode-test-functions.el +++ b/phps-mode-test-functions.el @@ -80,7 +80,7 @@ (should (equal '((1 (0 0)) (2 (0 0)) (3 (0 1)) (4 (0 1))) (phps-mode-test-functions--hash-to-list (phps-mode-functions-get-lines-indent))))) (phps-mode-test-with-buffer - "<?php\nmyFunction(array(\n 23,\n [\n 25\n ]\n)\n);" + "<?php\nmyFunction(array(\n 23,\n [\n 25\n ]\n )\n);" "Round and square bracket expressions" (should (equal '((1 (0 0)) (2 (0 0)) (3 (1 0)) (4 (1 0)) (5 (2 0)) (6 (1 0)) (7 (0 0)) (8 (0 0))) (phps-mode-test-functions--hash-to-list (phps-mode-functions-get-lines-indent))))) @@ -186,7 +186,7 @@ (should (equal '((1 (0 0)) (2 (0 0)) (3 (0 0)) (4 (1 0)) (5 (0 0))) (phps-mode-test-functions--hash-to-list (phps-mode-functions-get-lines-indent))))) (phps-mode-test-with-buffer - "<?php\n// Can we load configuration?\nif ($configuration::load(\n self::getParameter(self::PARAMETER_CONFIGURATION_INTERNAL_FILENAME),\n self::getParameter(self::PARAMETER_CONFIGURATION_EXTERNAL_FILENAME),\n self::getParameter(self::PARAMETER_STRUCTURE_INTERNAL_FILENAME),\n self::getParameter(self::PARAMETER_STRUCTURE_EXTERNAL_FILENAME)\n)) {\n echo 'was here';\n}\n" + "<?php\n// Can we load configuration?\nif ($configuration::load(\n self::getParameter(self::PARAMETER_CONFIGURATION_INTERNAL_FILENAME),\n self::getParameter(self::PARAMETER_CONFIGURATION_EXTERNAL_FILENAME),\n self::getParameter(self::PARAMETER_STRUCTURE_INTERNAL_FILENAME),\n self::getParameter(self::PARAMETER_STRUCTURE_EXTERNAL_FILENAME))\n) {\n echo 'was here';\n}\n" "If expression spanning multiple lines" ;; (message "Tokens: %s" phps-mode-lexer-tokens) (should (equal '((1 (0 0)) (2 (0 0)) (3 (0 0)) (4 (1 0)) (5 (1 0)) (6 (1 0)) (7 (1 0)) (8 (0 0)) (9 (1 0)) (10 (0 0))) (phps-mode-test-functions--hash-to-list (phps-mode-functions-get-lines-indent)))))