08/02/07 16:25:28
作者キター
caperでJavaScript生成させると
this.get_arg = function( base, index )
{
return this.stack[ this.stack.length - ( 3 * ( base-index ) + 2 ) ];
}
みたいなコードが出てくるけど
this.get_arg = function( base, index )
{
return this.stack[ this.stack.length - ( 3 * ( base-index ) ) + 2 ];
}
の間違いじゃないすか?