Function: ghub--graphql-lineage

ghub--graphql-lineage is a byte-compiled function defined in ghub-graphql.el.

Signature

(ghub--graphql-lineage LOC)

Source Code

;; Defined in ~/.emacs.d/elpa/ghub-20260401.1239/ghub-graphql.el
(defun ghub--graphql-lineage (loc)
  (let (lineage)
    (while (treepy-up loc)
      (push (car (treepy-node loc)) lineage)
      (setq loc (treepy-up loc)))
    lineage))