Function: srecode-resolve-arguments

srecode-resolve-arguments is a byte-compiled function defined in insert.el.gz.

Signature

(srecode-resolve-arguments TEMP DICT)

Documentation

Resolve all the arguments needed by the template TEMP.

Apply anything learned to the dictionary DICT.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/insert.el.gz
;;; TEMPLATE ARGUMENTS
;;
;; Some templates have arguments.  Each argument is associated with
;; a function that can resolve the inputs needed.
(defun srecode-resolve-arguments (temp dict)
  "Resolve all the arguments needed by the template TEMP.
Apply anything learned to the dictionary DICT."
  (srecode-resolve-argument-list (oref temp args) dict temp))