これは入力です:
function local2functionA()
{
local2functionB('hello');
}
function local2functionB(text)
{
alert(text);
}
これは出力です:
function local2functionA(){local2functionB("hello")}function local2functionB(a){alert(a)};
関数名を変更していないアイデアはありますか?