]> code.delx.au - gnu-emacs-elpa/blob - company-tests.el
Fix out-of-bounds error on truncated anno fontification
[gnu-emacs-elpa] / company-tests.el
1 ;;; company-tests.el --- company-mode tests
2
3 ;; Copyright (C) 2011, 2013-2014 Free Software Foundation, Inc.
4
5 ;; Author: Nikolaj Schumacher
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21
22
23 ;;; Commentary:
24 ;;
25
26 ;;; Code:
27
28 (eval-when-compile (require 'cl))
29 (require 'ert)
30 (require 'company)
31 (require 'company-keywords)
32 (require 'company-elisp)
33 (require 'company-clang)
34
35 ;;; Core
36
37 (ert-deftest company-sorted-keywords ()
38 "Test that keywords in `company-keywords-alist' are in alphabetical order."
39 (dolist (pair company-keywords-alist)
40 (when (consp (cdr pair))
41 (let ((prev (cadr pair)))
42 (dolist (next (cddr pair))
43 (should (not (equal prev next)))
44 (should (string< prev next))
45 (setq prev next))))))
46
47 (ert-deftest company-good-prefix ()
48 (let ((company-minimum-prefix-length 5)
49 company--explicit-action)
50 (should (eq t (company--good-prefix-p "!@#$%")))
51 (should (eq nil (company--good-prefix-p "abcd")))
52 (should (eq nil (company--good-prefix-p 'stop)))
53 (should (eq t (company--good-prefix-p '("foo" . 5))))
54 (should (eq nil (company--good-prefix-p '("foo" . 4))))))
55
56 (ert-deftest company-multi-backend-with-lambdas ()
57 (let ((company-backend
58 (list (lambda (command &optional arg &rest ignore)
59 (case command
60 (prefix "z")
61 (candidates '("a" "b"))))
62 (lambda (command &optional arg &rest ignore)
63 (case command
64 (prefix "z")
65 (candidates '("c" "d")))))))
66 (should (equal (company-call-backend 'candidates "z") '("a" "b" "c" "d")))))
67
68 (ert-deftest company-begin-backend-failure-doesnt-break-company-backends ()
69 (with-temp-buffer
70 (insert "a")
71 (company-mode)
72 (should-error
73 (company-begin-backend (lambda (command &rest ignore))))
74 (let (company-frontends
75 (company-backends
76 (list (lambda (command &optional arg)
77 (case command
78 (prefix "a")
79 (candidates '("a" "ab" "ac")))))))
80 (let (this-command)
81 (company-call 'complete))
82 (should (eq 3 company-candidates-length)))))
83
84 (ert-deftest company-require-match-explicit ()
85 (with-temp-buffer
86 (insert "ab")
87 (company-mode)
88 (let (company-frontends
89 (company-require-match 'company-explicit-action-p)
90 (company-backends
91 (list (lambda (command &optional arg)
92 (case command
93 (prefix (buffer-substring (point-min) (point)))
94 (candidates '("abc" "abd")))))))
95 (let (this-command)
96 (company-complete))
97 (let ((last-command-event ?e))
98 (company-call 'self-insert-command 1))
99 (should (eq 2 company-candidates-length))
100 (should (eq 3 (point))))))
101
102 (ert-deftest company-dont-require-match-when-idle ()
103 (with-temp-buffer
104 (insert "ab")
105 (company-mode)
106 (let (company-frontends
107 (company-require-match 'company-explicit-action-p)
108 (company-backends
109 (list (lambda (command &optional arg)
110 (case command
111 (prefix (buffer-substring (point-min) (point)))
112 (candidates '("abc" "abd")))))))
113 (company-idle-begin (current-buffer) (selected-window)
114 (buffer-chars-modified-tick) (point))
115 (let ((last-command-event ?e))
116 (company-call 'self-insert-command 1))
117 (should (eq nil company-candidates-length))
118 (should (eq 4 (point))))))
119
120 (ert-deftest company-should-complete-whitelist ()
121 (with-temp-buffer
122 (insert "ab")
123 (company-mode)
124 (let (company-frontends
125 company-begin-commands
126 (company-backends
127 (list (lambda (command &optional arg)
128 (case command
129 (prefix (buffer-substring (point-min) (point)))
130 (candidates '("abc" "abd")))))))
131 (let ((company-continue-commands nil))
132 (let (this-command)
133 (company-complete))
134 (company-call 'backward-delete-char 1)
135 (should (null company-candidates-length)))
136 (let ((company-continue-commands '(backward-delete-char)))
137 (let (this-command)
138 (company-complete))
139 (company-call 'backward-delete-char 1)
140 (should (eq 2 company-candidates-length))))))
141
142 (ert-deftest company-should-complete-blacklist ()
143 (with-temp-buffer
144 (insert "ab")
145 (company-mode)
146 (let (company-frontends
147 company-begin-commands
148 (company-backends
149 (list (lambda (command &optional arg)
150 (case command
151 (prefix (buffer-substring (point-min) (point)))
152 (candidates '("abc" "abd")))))))
153 (let ((company-continue-commands '(not backward-delete-char)))
154 (let (this-command)
155 (company-complete))
156 (company-call 'backward-delete-char 1)
157 (should (null company-candidates-length)))
158 (let ((company-continue-commands '(not backward-delete-char-untabify)))
159 (let (this-command)
160 (company-complete))
161 (company-call 'backward-delete-char 1)
162 (should (eq 2 company-candidates-length))))))
163
164 (ert-deftest company-auto-complete-explicit ()
165 (with-temp-buffer
166 (insert "ab")
167 (company-mode)
168 (let (company-frontends
169 (company-auto-complete 'company-explicit-action-p)
170 (company-auto-complete-chars '(? ))
171 (company-backends
172 (list (lambda (command &optional arg)
173 (case command
174 (prefix (buffer-substring (point-min) (point)))
175 (candidates '("abcd" "abef")))))))
176 (let (this-command)
177 (company-complete))
178 (let ((last-command-event ? ))
179 (company-call 'self-insert-command 1))
180 (should (string= "abcd " (buffer-string))))))
181
182 (ert-deftest company-no-auto-complete-when-idle ()
183 (with-temp-buffer
184 (insert "ab")
185 (company-mode)
186 (let (company-frontends
187 (company-auto-complete 'company-explicit-action-p)
188 (company-auto-complete-chars '(? ))
189 (company-backends
190 (list (lambda (command &optional arg)
191 (case command
192 (prefix (buffer-substring (point-min) (point)))
193 (candidates '("abcd" "abef")))))))
194 (company-idle-begin (current-buffer) (selected-window)
195 (buffer-chars-modified-tick) (point))
196 (let ((last-command-event ? ))
197 (company-call 'self-insert-command 1))
198 (should (string= "ab " (buffer-string))))))
199
200 (ert-deftest company-clears-explicit-action-when-no-matches ()
201 (with-temp-buffer
202 (company-mode)
203 (let (company-frontends
204 company-backends)
205 (company-call 'manual-begin) ;; fails
206 (should (null company-candidates))
207 (should (null (company-explicit-action-p))))))
208
209 (ert-deftest company-ignore-case-replaces-prefix ()
210 (with-temp-buffer
211 (company-mode)
212 (let (company-frontends
213 company-end-of-buffer-workaround
214 (company-backends
215 (list (lambda (command &optional arg)
216 (case command
217 (prefix (buffer-substring (point-min) (point)))
218 (candidates '("abcd" "abef"))
219 (ignore-case t))))))
220 (insert "A")
221 (let (this-command)
222 (company-complete))
223 (should (string= "ab" (buffer-string)))
224 (delete-char -2)
225 (insert "A") ; hack, to keep it in one test
226 (company-complete-selection)
227 (should (string= "abcd" (buffer-string))))))
228
229 (ert-deftest company-ignore-case-with-keep-prefix ()
230 (with-temp-buffer
231 (insert "AB")
232 (company-mode)
233 (let (company-frontends
234 (company-backends
235 (list (lambda (command &optional arg)
236 (case command
237 (prefix (buffer-substring (point-min) (point)))
238 (candidates '("abcd" "abef"))
239 (ignore-case 'keep-prefix))))))
240 (let (this-command)
241 (company-complete))
242 (company-complete-selection)
243 (should (string= "ABcd" (buffer-string))))))
244
245 (ert-deftest company-non-prefix-completion ()
246 (with-temp-buffer
247 (insert "tc")
248 (company-mode)
249 (let (company-frontends
250 company-end-of-buffer-workaround
251 (company-backends
252 (list (lambda (command &optional arg)
253 (case command
254 (prefix (buffer-substring (point-min) (point)))
255 (candidates '("tea-cup" "teal-color")))))))
256 (let (this-command)
257 (company-complete))
258 (should (string= "tc" (buffer-string)))
259 (company-complete-selection)
260 (should (string= "tea-cup" (buffer-string))))))
261
262 (ert-deftest company-pseudo-tooltip-does-not-get-displaced ()
263 :tags '(interactive)
264 (with-temp-buffer
265 (save-window-excursion
266 (set-window-buffer nil (current-buffer))
267 (save-excursion (insert " ff"))
268 (company-mode)
269 (let ((company-frontends '(company-pseudo-tooltip-frontend))
270 (company-begin-commands '(self-insert-command))
271 (company-backends
272 (list (lambda (c &optional arg)
273 (case c (prefix "") (candidates '("a" "b" "c")))))))
274 (let (this-command)
275 (company-call 'complete))
276 (company-call 'open-line 1)
277 (should (eq 2 (overlay-start company-pseudo-tooltip-overlay)))))))
278
279 (ert-deftest company-pseudo-tooltip-show ()
280 :tags '(interactive)
281 (with-temp-buffer
282 (save-window-excursion
283 (set-window-buffer nil (current-buffer))
284 (insert "aaaa\n bb\nccccccc\nddd")
285 (search-backward "bb")
286 (let ((col (company--column))
287 (company-candidates-length 2)
288 (company-candidates '("123" "45")))
289 (company-pseudo-tooltip-show (company--row) col 0)
290 (let ((ov company-pseudo-tooltip-overlay))
291 ;; With margins.
292 (should (eq (overlay-get ov 'company-width) 5))
293 ;; FIXME: Make it 2?
294 (should (eq (overlay-get ov 'company-height) company-tooltip-limit))
295 (should (eq (overlay-get ov 'company-column) col))
296 (should (string= (overlay-get ov 'company-after)
297 " 123 \nc 45 c\nddd\n")))))))
298
299 (ert-deftest company-preview-show-with-annotations ()
300 :tags '(interactive)
301 (with-temp-buffer
302 (save-window-excursion
303 (set-window-buffer nil (current-buffer))
304 (save-excursion (insert "\n"))
305 (let ((company-candidates-length 1)
306 (company-candidates '("123")))
307 (company-preview-show-at-point (point))
308 (let ((ov company-preview-overlay))
309 (should (string= (overlay-get ov 'display) "123\n")))))))
310
311 (ert-deftest company-pseudo-tooltip-show-with-annotations ()
312 :tags '(interactive)
313 (with-temp-buffer
314 (save-window-excursion
315 (set-window-buffer nil (current-buffer))
316 (insert " ")
317 (save-excursion (insert "\n"))
318 (let ((company-candidates-length 2)
319 (company-backend (lambda (action &optional arg &rest _ignore)
320 (when (eq action 'annotation)
321 (cdr (assoc arg '(("123" . "(4)")))))))
322 (company-candidates '("123" "45")))
323 (company-pseudo-tooltip-show-at-point (point))
324 (let ((ov company-pseudo-tooltip-overlay))
325 ;; With margins.
326 (should (eq (overlay-get ov 'company-width) 8))
327 (should (string= (overlay-get ov 'company-after)
328 " 123(4) \n 45 \n")))))))
329
330 (ert-deftest company-create-lines-shows-numbers ()
331 (let ((company-show-numbers t)
332 (company-candidates '("x" "y" "z"))
333 (company-candidates-length 3))
334 (should (equal '(" x 1 " " y 2 " " z 3 ")
335 (company--create-lines 0 999)))))
336
337 (ert-deftest company-create-lines-truncates-annotations ()
338 (let* ((ww (company--window-width))
339 (data `(("1" . "(123)")
340 ("2" . nil)
341 ("3" . ,(concat "(" (make-string (- ww 2) ?4) ")"))))
342 (company-candidates (mapcar #'car data))
343 (company-candidates-length 3)
344 (company-tooltip-margin 1)
345 (company-backend (lambda (cmd &optional arg)
346 (when (eq cmd 'annotation)
347 (cdr (assoc arg data))))))
348 (should (equal (list (format " 1(123)%s " (company-space-string (- ww 8)))
349 (format " 2%s " (company-space-string (- ww 3)))
350 (format " 3(444%s " (make-string (- ww 7) ?4)))
351 (company--create-lines 0 999)))))
352
353 (ert-deftest company-column-with-composition ()
354 (with-temp-buffer
355 (insert "lambda ()")
356 (compose-region 1 (1+ (length "lambda")) "\\")
357 (should (= (company--column) 4))))
358
359 (ert-deftest company-column-with-line-prefix ()
360 (with-temp-buffer
361 (insert "foo")
362 (put-text-property (point-min) (point) 'line-prefix " ")
363 (should (= (company--column) 5))))
364
365 (ert-deftest company-column-wth-line-prefix-on-empty-line ()
366 (with-temp-buffer
367 (insert "\n")
368 (forward-char -1)
369 (put-text-property (point-min) (point-max) 'line-prefix " ")
370 (should (= (company--column) 2))))
371
372 (ert-deftest company-plainify ()
373 (let ((tab-width 8))
374 (should (equal-including-properties
375 (company-plainify "\tabc\td\t")
376 (concat " "
377 "abc "
378 "d "))))
379 (should (equal-including-properties
380 (company-plainify (propertize "foobar" 'line-prefix "-*-"))
381 "-*-foobar")))
382
383 (ert-deftest company-modify-line ()
384 (let ((str "-*-foobar"))
385 (should (equal-including-properties
386 (company-modify-line str "zz" 4)
387 "-*-fzzbar"))
388 (should (equal-including-properties
389 (company-modify-line str "xx" 0)
390 "xx-foobar"))
391 (should (equal-including-properties
392 (company-modify-line str "zz" 10)
393 "-*-foobar zz"))))
394
395 (ert-deftest company-scrollbar-bounds ()
396 (should (equal nil (company--scrollbar-bounds 0 3 3)))
397 (should (equal nil (company--scrollbar-bounds 0 4 3)))
398 (should (equal '(0 . 0) (company--scrollbar-bounds 0 1 2)))
399 (should (equal '(1 . 1) (company--scrollbar-bounds 2 2 4)))
400 (should (equal '(2 . 3) (company--scrollbar-bounds 7 4 12)))
401 (should (equal '(1 . 2) (company--scrollbar-bounds 3 4 12)))
402 (should (equal '(1 . 3) (company--scrollbar-bounds 4 5 11))))
403
404 ;;; Template
405
406 (ert-deftest company-template-removed-after-the-last-jump ()
407 (with-temp-buffer
408 (insert "{ }")
409 (goto-char 2)
410 (let ((tpl (company-template-declare-template (point) (1- (point-max)))))
411 (save-excursion
412 (dotimes (i 2)
413 (insert " ")
414 (company-template-add-field tpl (point) "foo")))
415 (company-call 'template-forward-field)
416 (should (= 3 (point)))
417 (company-call 'template-forward-field)
418 (should (= 7 (point)))
419 (company-call 'template-forward-field)
420 (should (= 11 (point)))
421 (should (zerop (length (overlay-get tpl 'company-template-fields))))
422 (should (null (overlay-buffer tpl))))))
423
424 (ert-deftest company-template-removed-after-input-and-jump ()
425 (with-temp-buffer
426 (insert "{ }")
427 (goto-char 2)
428 (let ((tpl (company-template-declare-template (point) (1- (point-max)))))
429 (save-excursion
430 (insert " ")
431 (company-template-add-field tpl (point) "bar"))
432 (company-call 'template-move-to-first tpl)
433 (should (= 3 (point)))
434 (dolist (c (string-to-list "tee"))
435 (let ((last-command-event c))
436 (company-call 'self-insert-command 1)))
437 (should (string= "{ tee }" (buffer-string)))
438 (should (overlay-buffer tpl))
439 (company-call 'template-forward-field)
440 (should (= 7 (point)))
441 (should (null (overlay-buffer tpl))))))
442
443 (defun company-call (name &rest args)
444 (let* ((maybe (intern (format "company-%s" name)))
445 (command (if (fboundp maybe) maybe name)))
446 (let ((this-command command))
447 (run-hooks 'pre-command-hook))
448 (apply command args)
449 (let ((this-command command))
450 (run-hooks 'post-command-hook))))
451
452 (ert-deftest company-template-c-like-templatify ()
453 (with-temp-buffer
454 (let ((text "foo(int a, short b)"))
455 (insert text)
456 (company-template-c-like-templatify text)
457 (should (equal "foo(arg0, arg1)" (buffer-string)))
458 (should (looking-at "arg0"))
459 (should (equal "int a"
460 (overlay-get (company-template-field-at) 'display))))))
461
462 (ert-deftest company-template-c-like-templatify-trims-after-closing-paren ()
463 (with-temp-buffer
464 (let ((text "foo(int a, short b)!@ #1334 a"))
465 (insert text)
466 (company-template-c-like-templatify text)
467 (should (equal "foo(arg0, arg1)" (buffer-string)))
468 (should (looking-at "arg0")))))
469
470 ;;; Elisp
471
472 (defmacro company-elisp-with-buffer (contents &rest body)
473 (declare (indent 0))
474 `(with-temp-buffer
475 (insert ,contents)
476 (setq major-mode 'emacs-lisp-mode)
477 (re-search-backward "|")
478 (replace-match "")
479 (let ((company-elisp-detect-function-context t))
480 ,@body)))
481
482 (ert-deftest company-elisp-candidates-predicate ()
483 (company-elisp-with-buffer
484 "(foo ba|)"
485 (should (eq (company-elisp--candidates-predicate "ba")
486 'boundp))
487 (should (eq (let (company-elisp-detect-function-context)
488 (company-elisp--candidates-predicate "ba"))
489 'company-elisp--predicate)))
490 (company-elisp-with-buffer
491 "(foo| )"
492 (should (eq (company-elisp--candidates-predicate "foo")
493 'fboundp))
494 (should (eq (let (company-elisp-detect-function-context)
495 (company-elisp--candidates-predicate "foo"))
496 'company-elisp--predicate)))
497 (company-elisp-with-buffer
498 "(foo 'b|)"
499 (should (eq (company-elisp--candidates-predicate "b")
500 'company-elisp--predicate))))
501
502 (ert-deftest company-elisp-candidates-predicate-in-docstring ()
503 (company-elisp-with-buffer
504 "(def foo () \"Doo be doo `ide|"
505 (should (eq 'company-elisp--predicate
506 (company-elisp--candidates-predicate "ide")))))
507
508 ;; This one's also an integration test.
509 (ert-deftest company-elisp-candidates-recognizes-binding-form ()
510 (let ((company-elisp-detect-function-context t)
511 (obarray [when what whelp])
512 (what 1)
513 (whelp 2)
514 (wisp 3))
515 (company-elisp-with-buffer
516 "(let ((foo 7) (wh| )))"
517 (should (equal '("what" "whelp")
518 (company-elisp-candidates "wh"))))
519 (company-elisp-with-buffer
520 "(cond ((null nil) (wh| )))"
521 (should (equal '("when")
522 (company-elisp-candidates "wh"))))))
523
524 (ert-deftest company-elisp-candidates-predicate-binding-without-value ()
525 (loop for (text prefix predicate) in '(("(let (foo|" "foo" boundp)
526 ("(let (foo (bar|" "bar" boundp)
527 ("(let (foo) (bar|" "bar" fboundp))
528 do
529 (eval `(company-elisp-with-buffer
530 ,text
531 (should (eq ',predicate
532 (company-elisp--candidates-predicate ,prefix)))))))
533
534 (ert-deftest company-elisp-finds-vars ()
535 (let ((obarray [boo bar baz backquote])
536 (boo t)
537 (bar t)
538 (baz t))
539 (should (equal '("bar" "baz")
540 (company-elisp--globals "ba" 'boundp)))))
541
542 (ert-deftest company-elisp-finds-functions ()
543 (let ((obarray [when what whelp])
544 (what t)
545 (whelp t))
546 (should (equal '("when")
547 (company-elisp--globals "wh" 'fboundp)))))
548
549 (ert-deftest company-elisp-finds-things ()
550 (let ((obarray [when what whelp])
551 (what t)
552 (whelp t))
553 (should (equal '("what" "whelp" "when")
554 (sort (company-elisp--globals "wh" 'company-elisp--predicate)
555 'string<)))))
556
557 (ert-deftest company-elisp-locals-vars ()
558 (company-elisp-with-buffer
559 "(let ((foo 5) (bar 6))
560 (cl-labels ((borg ()))
561 (lambda (boo baz)
562 b|)))"
563 (should (equal '("bar" "baz" "boo")
564 (company-elisp--locals "b" nil)))))
565
566 (ert-deftest company-elisp-locals-single-var ()
567 (company-elisp-with-buffer
568 "(dotimes (itk 100)
569 (dolist (item items)
570 it|))"
571 (should (equal '("itk" "item")
572 (company-elisp--locals "it" nil)))))
573
574 (ert-deftest company-elisp-locals-funs ()
575 (company-elisp-with-buffer
576 "(cl-labels ((foo ())
577 (fee ()))
578 (let ((fun 4))
579 (f| )))"
580 (should (equal '("fee" "foo")
581 (sort (company-elisp--locals "f" t) 'string<)))))
582
583 (ert-deftest company-elisp-locals-skips-current-varlist ()
584 (company-elisp-with-buffer
585 "(let ((foo 1)
586 (f| )))"
587 (should (null (company-elisp--locals "f" nil)))))
588
589 (ert-deftest company-elisp-show-locals-first ()
590 (company-elisp-with-buffer
591 "(let ((floo 1)
592 (flop 2)
593 (flee 3))
594 fl|)"
595 (let ((obarray [float-pi]))
596 (let (company-elisp-show-locals-first)
597 (should (eq nil (company-elisp 'sorted))))
598 (let ((company-elisp-show-locals-first t))
599 (should (eq t (company-elisp 'sorted)))
600 (should (equal '("flee" "floo" "flop" "float-pi")
601 (company-elisp-candidates "fl")))))))
602
603 (ert-deftest company-elisp-candidates-no-duplicates ()
604 (company-elisp-with-buffer
605 "(let ((float-pi 4))
606 f|)"
607 (let ((obarray [float-pi])
608 (company-elisp-show-locals-first t))
609 (should (equal '("float-pi") (company-elisp-candidates "f"))))))
610
611 (ert-deftest company-elisp-shouldnt-complete-defun-name ()
612 (company-elisp-with-buffer
613 "(defun foob|)"
614 (should (null (company-elisp 'prefix)))))
615
616 (ert-deftest company-elisp-should-complete-def-call ()
617 (company-elisp-with-buffer
618 "(defu|"
619 (should (equal "defu" (company-elisp 'prefix)))))
620
621 (ert-deftest company-elisp-should-complete-in-defvar ()
622 ;; It will also complete the var name, at least for now.
623 (company-elisp-with-buffer
624 "(defvar abc de|"
625 (should (equal "de" (company-elisp 'prefix)))))
626
627 (ert-deftest company-elisp-shouldnt-complete-in-defun-arglist ()
628 (company-elisp-with-buffer
629 "(defsubst foobar (ba|"
630 (should (null (company-elisp 'prefix)))))
631
632 (ert-deftest company-elisp-prefix-in-defun-body ()
633 (company-elisp-with-buffer
634 "(defun foob ()|)"
635 (should (equal "" (company-elisp 'prefix)))))
636
637 ;;; Clang
638
639 (ert-deftest company-clang-objc-templatify ()
640 (with-temp-buffer
641 (let ((text "createBookWithTitle:andAuthor:"))
642 (insert text)
643 (company-clang-objc-templatify text)
644 (should (equal "createBookWithTitle:arg0 andAuthor:arg1" (buffer-string)))
645 (should (looking-at "arg0"))
646 (should (null (overlay-get (company-template-field-at) 'display))))))