Function: go-ts-mode--get-test-flags
go-ts-mode--get-test-flags is a byte-compiled function defined in
go-ts-mode.el.gz.
Signature
(go-ts-mode--get-test-flags)
Documentation
Return the flags for test invocation.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/go-ts-mode.el.gz
(defun go-ts-mode--get-test-flags ()
"Return the flags for test invocation."
(if go-ts-mode-test-flags
(mapconcat #'shell-quote-argument go-ts-mode-test-flags " ")
""))