Skip to content

Instantly share code, notes, and snippets.

@omasanori
Last active December 31, 2015 19:39
Show Gist options
  • Select an option

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

Select an option

Save omasanori/8035166 to your computer and use it in GitHub Desktop.
最適化回避ビフォーアフター
(def widgets ,,,)
((aget widgets "Widget") button)
(def widgets ,,,)
(.Widget widgets button)
var widgets = /* ... */;
widgets.Widget(button);
var a = /* ... */;
a.Widget.call(/* ... */);
var a = /* ... */;
a.a(/* ... */);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment