Skip to content

Instantly share code, notes, and snippets.

@omasanori
Created December 19, 2013 06:06
Show Gist options
  • Select an option

  • Save omasanori/8035059 to your computer and use it in GitHub Desktop.

Select an option

Save omasanori/8035059 to your computer and use it in GitHub Desktop.
ClojureScriptの最適化でハマっているところ。:optimizations :advanced
;(function(){
baz({Bar:1});
})();
;(function(){
baz({a:1});
})();
(ns example.core)
(def foo (js-obj))
(set! (.-Bar foo) 1)
(js/baz foo)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment