diff options
| author | Tom Tromey <tom@tromey.com> | 2017-03-15 05:00:29 +0100 |
|---|---|---|
| committer | Tom Tromey <tom@tromey.com> | 2017-03-15 08:21:31 +0100 |
| commit | ee7043b56d232b1d5fa5601d34bd15652614cea0 (patch) | |
| tree | 9df430a407b31d4c2ed17b2eac8084df20b1e769 /rust-mode-tests.el | |
| parent | 35298ed93dd6a71fa09d9e1cb6dbd610871f4e2b (diff) | |
| download | rust-mode-ee7043b56d232b1d5fa5601d34bd15652614cea0.tar.gz | |
Use syntax-propertize-function, not font-lock-syntactic-keywords
font-lock-syntactic-keywords have been obsolete since Emacs 24.1, the
earliest version supported by rust-mode. Instead, modes are
encouraged to use syntax-propertize-function.
syntax-propertize-function provides a generally better experience.
Syntax propertization is not tied to font lock,so angle bracket
matching will still work when font-lock is disabled. There's no
longer a need to call font-lock-fontify-buffer or font-lock-ensure
(you can see this in the tests). The resulting code is also shorter.
I removed a few tests:
* font-lock-raw-string-constant was written assuming font-lock based
syntax propertization, but that's no longer the case.
* font-lock-extend-region-in-string and
rust-test-revert-hook-preserves-point both called functions that no
longer exist.
There's a fix for a hidden bug in rust-is-in-expression-context. This
previously could signal in some situations, but the signal was hidden
by font-lock. It was visible now when running tests, hence the new
call to condition-case.
I suspect this might fix #192, but I haven't tried it.
Diffstat (limited to 'rust-mode-tests.el')
| -rw-r--r-- | rust-mode-tests.el | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/rust-mode-tests.el b/rust-mode-tests.el index 1e637d6..303bb51 100644 --- a/rust-mode-tests.el +++ b/rust-mode-tests.el @@ -309,9 +309,6 @@ very very very long string deindented 1 (lambda () - ;; The indentation will fail in some cases if the syntax properties are - ;; not set. This only happens when font-lock fontifies the buffer. - (font-lock-fontify-buffer) (indent-region 1 (+ 1 (buffer-size)))) indented))) @@ -960,7 +957,6 @@ INIT-POS, FINAL-POS are position symbols found in `rust-test-positions-alist'." (with-temp-buffer (rust-mode) (insert source-code) - (font-lock-fontify-buffer) (goto-char (rust-get-buffer-pos init-pos)) (apply manip-func args) (should (equal (point) (rust-get-buffer-pos final-pos))))) @@ -974,7 +970,6 @@ All positions are position symbols found in `rust-test-positions-alist'." (with-temp-buffer (rust-mode) (insert source-code) - (font-lock-fontify-buffer) (goto-char (rust-get-buffer-pos init-pos)) (apply manip-func args) (should (equal (list (region-beginning) (region-end)) @@ -1377,24 +1372,6 @@ this_is_not_a_string();)" "r\" this is a comment\n" font-lock-comment-face "\"this is a string\"" font-lock-string-face))) -(ert-deftest font-lock-raw-string-constant () - ;; There was an issue in which a multi-line raw string would be fontified - ;; correctly if inserted, but then incorrectly if one of the lines was then - ;; edited. This test replicates how font-lock responds when text in the - ;; buffer is modified in order to reproduce it. - (with-temp-buffer - (rust-mode) - (font-lock-fontify-buffer) - (insert "const BOO:&str = r#\"\nBOO\"#;") - (beginning-of-buffer) - (insert " ") - (font-lock-after-change-function 1 2 0) - - (should (equal 'font-lock-string-face (get-text-property 19 'face))) ;; Opening "r" of raw string - (should (equal 'font-lock-string-face (get-text-property 27 'face))) ;; Closing "#" of raw string - (should (equal nil (get-text-property 28 'face))) ;; Semicolon--should not be part of the string - )) - (ert-deftest font-lock-runaway-raw-string () (rust-test-font-lock "const Z = r#\"my raw string\";\n// oops this is still in the string" @@ -2552,34 +2529,6 @@ type Foo<T> where T: Copy = Box<T>; '(7 9)))) -(ert-deftest font-lock-extend-region-in-string () - - (with-temp-buffer - (rust-mode) - (insert " -fn foo() { - let x = r\" -Fontification needs to include this whole string or none of it. - \" -}") - (font-lock-fontify-buffer) - (let ((font-lock-beg 13) - (font-lock-end 42)) - (rust-font-lock-extend-region) - (should (<= font-lock-beg 13)) - (should (>= font-lock-end 106)) - ) - (let ((font-lock-beg 42) - (font-lock-end 108)) - (rust-font-lock-extend-region) - (should (<= font-lock-beg 25)) - (should (>= font-lock-end 108))) - (let ((font-lock-beg 1) - (font-lock-end 12)) - (rust-font-lock-extend-region) - (should (<= font-lock-beg 1)) - (should (>= font-lock-end 12))))) - (ert-deftest redo-syntax-after-change-far-from-point () (let* ((tmp-file-name (make-temp-file "rust-mdoe-test-issue104")) @@ -2603,18 +2552,6 @@ Fontification needs to include this whole string or none of it. ) ) -(ert-deftest rust-test-revert-hook-preserves-point () - (with-temp-buffer - ;; Insert some code, and put point in the middle. - (insert "fn foo() {}\n") - (insert "fn bar() {}\n") - (insert "fn baz() {}\n") - (goto-char (point-min)) - (forward-line 1) - (let ((initial-point (point))) - (rust--after-revert-hook) - (should (equal initial-point (point)))))) - (defun test-imenu (code expected-items) (with-temp-buffer (rust-mode) |
