proxy-super

clojure.core

  • (proxy-super meth & args)
Use to call a superclass method in the body of a proxy method.
Note, expansion captures 'this

0 Examples top

Log in to add / edit an example.

See Also top

Log in to add a see also.

Plus_12x12 Minus_12x12 Source clojure/core_proxy.clj:365 top

(defmacro proxy-super 
  "Use to call a superclass method in the body of a proxy method. 
  Note, expansion captures 'this"
  {:added "1.0"}
  [meth & args]
 `(proxy-call-with-super (fn [] (. ~'this ~meth ~@args))  ~'this ~(name meth)))
Vars in clojure.core/proxy-super:
Used in 0 other vars

Comments top

No comments for proxy-super. Log in to add a comment.