SMJS: move comments to match spidermonkeyFunctionSpec[]
commit268249c50b8c936dc3be52df68893b4ea4078e00
authorKalle Olavi Niemitalo <kon@iki.fi>
Sun, 25 Nov 2012 22:15:09 +0000 (26 00:15 +0200)
committerKalle Olavi Niemitalo <Kalle@Niukka.kon.iki.fi>
Sun, 25 Nov 2012 22:15:09 +0000 (26 00:15 +0200)
tree395cd8586d455fb3bd415998ecbf4a2d919d09a7
parentc4a23543fda19c04c4938d54de374e84d3b60d10
SMJS: move comments to match spidermonkeyFunctionSpec[]

Each C function that can be called as a method of an ECMAScript object
is typically listed in a spidermonkeyFunctionSpec array and has a
comment that shows the name of the array and the name of the method.
For example, elinks_alert has a comment /* @elinks_funcs{"alert"} */
because elinks_funcs[] contains an element { "alert", elinks_alert, 1 }.

When some of those functions were split into outer and inner functions
for SpiderMonkey 1.8.5 compatibility, the comments were attached to
the inner functions, which contain the bulk of the code.  Move the
comments to the outer functions, to which the array elements point.
src/ecmascript/spidermonkey/form.c