Function: js--skip-terms-backward

js--skip-terms-backward is a byte-compiled function defined in js.el.gz.

Signature

(js--skip-terms-backward)

Documentation

Skip any number of terms backward.

Move point to the earliest "." without changing paren levels. Returns t if successful, nil if no term was found.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
(defun js--skip-terms-backward ()
  "Skip any number of terms backward.
Move point to the earliest \".\" without changing paren levels.
Returns t if successful, nil if no term was found."
  (when (js--skip-term-backward)
    ;; Found at least one.
    (let ((last-point (point)))
      (while (js--skip-term-backward)
        (setq last-point (point)))
      (goto-char last-point)
      t)))