branch: externals/phps-mode commit 0c49d6d4df8a1161755691f49c2c43b14e5f1e87 Author: Christian Johansson <christ...@cvj.se> Commit: Christian Johansson <christ...@cvj.se>
Removed debugging output --- phps-mode-test-lexer.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phps-mode-test-lexer.el b/phps-mode-test-lexer.el index 685c954..abd62ee 100644 --- a/phps-mode-test-lexer.el +++ b/phps-mode-test-lexer.el @@ -271,7 +271,7 @@ (phps-mode-test-with-buffer "<?php $this->add($option['style']['selectors'], array('background' => \"{$value['color']} url('{$value['image']}')\"));" "Complex tokens with tokens inside double-quoted string" - (message "Tokens 2: %s" phps-mode-lexer-tokens) + ;; (message "Tokens 2: %s" phps-mode-lexer-tokens) (should (equal phps-mode-lexer-tokens '((T_OPEN_TAG 1 . 7) (T_VARIABLE 7 . 12) (T_OBJECT_OPERATOR 12 . 14) (T_STRING 14 . 17) ("(" 17 . 18) (T_VARIABLE 18 . 25) ("[" 25 . 26) (T_CONSTANT_ENCAPSED_STRING 26 . 33) ("]" 33 . 34) ("[" 34 . 35) (T_CONSTANT_ENCAPSED_STRING 35 . 46) ("]" 46 . 47) ("," 47 . 48) (T_ARRAY 49 . 54) ("(" 54 . 55) (T_CONSTANT_ENCAPSED_STRING 55 . 67) (T_DOUBLE_ARROW 68 . 70) ("\"" 71 . 72) (T_ENCAPSED_AND_WHITESPACE 72 . 72) (T_CURLY_OPEN 72 . 73) (T_VARIABLE 73 . 79) ("[" 79 . 80) (T_C [...]