Function: go-ts-mode--iota-query-supported-p

go-ts-mode--iota-query-supported-p is a byte-compiled function defined in go-ts-mode.el.gz.

Signature

(go-ts-mode--iota-query-supported-p)

Documentation

Return t if the iota query is supported by the tree-sitter-go grammar.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/go-ts-mode.el.gz
(defun go-ts-mode--iota-query-supported-p ()
  "Return t if the iota query is supported by the tree-sitter-go grammar."
  (ignore-errors
    (or (treesit-query-string "" '((iota) @font-lock-constant-face) 'go) t)))