程序代码: function sub(a, b) { return a-b; } x = 3; y = 2; return sub(x, y); getOutVarNames获取到的变量名称是"a","b"。 通常情况下,我希望获取到的是的变量不包含内部function的参数。