I just hit this issue myself and wrote a macro to make it a bit easier to
extend google-closure provided classes. Here's the code:
(ns move.macros
(:require [cljs.compiler :as compiler]
[cljs.core :as cljs]))
(defmacro goog-extend [type base-type ctor & methods]
`(do
(defn ~
On Fri, Jun 29, 2012 at 9:08 AM, Danny O' Connor wrote:
> Hello,
>
> I'm trying to build an user interface in Clojurescript using the Google
> Closure library.
>
> It appears that the idiomatic way to use the goog.ui package is to create
> subclasses of goog.ui.Component.
>
> Firstly, is this poss
Hello,
I'm trying to build an user interface in Clojurescript using the Google
Closure library.
It appears that the idiomatic way to use the goog.ui package is to create
subclasses of goog.ui.Component.
Firstly, is this possible in Clojurescript ? This kind of approach doesn't
appear to wo