Function: go-ts-mode--other-type-node-p

go-ts-mode--other-type-node-p is a byte-compiled function defined in go-ts-mode.el.gz.

Signature

(go-ts-mode--other-type-node-p NODE)

Documentation

Return t if NODE is a type other than interface, struct, or alias.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/go-ts-mode.el.gz
(defun go-ts-mode--other-type-node-p (node)
  "Return t if NODE is a type other than interface, struct, or alias."
  (and
   (string-equal "type_declaration" (treesit-node-type node))
   (not (go-ts-mode--interface-node-p node))
   (not (go-ts-mode--struct-node-p node))
   (not (go-ts-mode--alias-node-p node))))