这是 ExtJS 中的 callParent 方法。$previous、$owner 和 $name 是什么?为什么有一个前导的“$”符号?callParent: function(args) { var 方法;
// This code is intentionally inlined for the least number of debugger stepping
return (method = this.callParent.caller) && (method.$previous ||
((method = method.$owner ? method : method.caller) &&
method.$owner.superclass.$class[method.$name])).apply(this, args || noArgs);
}