this is more of a question than an issue, but: You say closures don't map to javascript, but couldn't this example ``` javascript g.v(1).out().gather("{it.size()}"); ``` also be written as ``` javascript g.v(1).out().gather( function(it) { return it.size(); } ); ``` in javascript?
this is more of a question than an issue, but:
You say closures don't map to javascript, but couldn't this example
also be written as
in javascript?